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 649 B

il y a 14 ans
il y a 14 ans
123456789101112131415161718192021222324252627
  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. -#
  8. %tr
  9. %td Directorate
  10. %td
  11. %a{ :href => "/directorates/#{@payment.directorate.slug}" }
  12. = @payment.directorate.name
  13. %tr
  14. %td Service
  15. %td
  16. %a{ :href => "/services/#{@payment.service.slug}" }
  17. = @payment.service.name
  18. %tr
  19. %td Supplier
  20. %td
  21. %a{ :href => "/suppliers/#{@payment.supplier.slug}" }
  22. = @payment.supplier.name
  23. %tr
  24. %td Amount £
  25. %td= sprintf("%0.2f", @payment.amount)