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.

payment.haml 632 B

14 yıl önce
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.directorate.slug}" }
  11. = @payment.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)