An open source, stand-alone, customisable public spending data web app.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

service.haml 915 B

14 yıl önce
14 yıl önce
14 yıl önce
14 yıl önce
12345678910111213141516171819202122232425262728293031323334353637383940
  1. .grid_12
  2. %h2= @page_title = @service.name + " (Service)"
  3. %ul#breadcrumb
  4. %li.home
  5. %a{ :href => '/'} Home
  6. %li
  7. %a{ :href => '/services' } Services
  8. %li
  9. = @service.name
  10. %p.noprint.download
  11. %a{ :href => "/services/#{@service.slug}.csv" }
  12. Download data as CSV
  13. %table
  14. %tr
  15. %th Date
  16. %th Directorate
  17. %th Supplier
  18. %th £
  19. - for payment in @service.payments
  20. %tr
  21. %td= payment.d.strftime("%d %b %Y")
  22. %td
  23. %a{ :href => '/directorates/' + payment.directorate.slug }
  24. = payment.directorate.name
  25. %td
  26. %a{ :href => '/suppliers/' + payment.supplier.slug }
  27. = payment.supplier.name
  28. %td.right= sprintf("%0d", payment.amount)
  29. %tr
  30. %td
  31. %td
  32. %td
  33. %strong TOTAL
  34. %td.right= sprintf("%0d", @total)