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.
 
 
 
 

27 lignes
597 B

  1. %table
  2. %tr
  3. %th Date
  4. %th Ref.
  5. %th Transaction
  6. %th Supplier
  7. %th.right £
  8. - for payment in @payments
  9. %tr
  10. %td= payment.d.strftime("%d %b %Y")
  11. %td.right
  12. %a{ :href => "/payments/#{payment.id}" }
  13. = payment.id
  14. %td.right= payment.transaction_id
  15. %td
  16. %a{ :href => '/suppliers/' + payment.supplier.slug }
  17. = payment.supplier.name
  18. %td.right= commify(sprintf("%0d", payment.amount))
  19. %tr
  20. %td
  21. %td
  22. %td
  23. %td
  24. %strong TOTAL
  25. %td.right= commify(sprintf("%0d", @total))