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.

payment.haml 648 B

il y a 14 ans
il y a 14 ans
1234567891011121314151617181920212223242526
  1. .grid_12
  2. %h2= @page_title = "Payment " + @payment.id.to_s
  3. %table
  4. %tr
  5. %td Date
  6. %td= @payment.d.strftime("%d %b %Y")
  7. %tr
  8. %td Directorate
  9. %td
  10. %a{ :href => "/directorates/#{@payment.service.directorate.slug}" }
  11. = @payment.service.directorate.name
  12. %tr
  13. %td Service
  14. %td
  15. %a{ :href => "/services/#{@payment.service.slug}" }
  16. = @payment.service.name
  17. %tr
  18. %td Supplier
  19. %td
  20. %a{ :href => "/suppliers/#{@payment.supplier.slug}" }
  21. = @payment.supplier.name
  22. %tr
  23. %td Amount £
  24. %td= sprintf("%0.2f", @payment.amount)