An open source, stand-alone, customisable public spending data web app.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

directorate.haml 818 B

il y a 14 ans
il y a 14 ans
12345678910111213141516171819202122232425262728293031323334353637
  1. .grid_12
  2. %h2= @page_title = @directorate.name + " Directorate"
  3. %ul#breadcrumb
  4. %li.home
  5. %a{ :href => '/'} Home
  6. %li
  7. %a{ :href => '/directorates' } Directorates
  8. %li
  9. = @directorate.name
  10. %table
  11. %tr
  12. %th Date
  13. %th Service
  14. %th Supplier
  15. %th £
  16. - for payment in @directorate.payments
  17. %tr
  18. %td= payment.d.strftime("%d %b %Y")
  19. %td
  20. %a{ :href => '/services/' + payment.service.id.to_s }
  21. = payment.service.name
  22. %td
  23. %a{ :href => '/suppliers/' + payment.supplier.id.to_s }
  24. = payment.supplier.name
  25. %td.right= sprintf("%0d", payment.amount)
  26. %tr
  27. %td
  28. %td
  29. %td
  30. %strong TOTAL
  31. %td.right= sprintf("%0d", @total)