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.
|
- .grid_12
- %h2= @page_title = "Payment " + @payment.id.to_s
-
- %table
- %tr
- %td Date
- %td= @payment.d.strftime("%d %b %Y")
- %tr
- %td Directorate
- %td
- %a{ :href => "/directorates/#{@payment.service.directorate.slug}" }
- = @payment.service.directorate.name
- %tr
- %td Service
- %td
- %a{ :href => "/services/#{@payment.service.slug}" }
- = @payment.service.name
- %tr
- %td Supplier
- %td
- %a{ :href => "/suppliers/#{@payment.supplier.slug}" }
- = @payment.supplier.name
- %tr
- %td Amount £
- %td= sprintf("%0.2f", @payment.amount)
-
|