An open source, stand-alone, customisable public spending data web app.
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- .grid_12
- %h2= @page_title = @service.name + " (Service)"
-
- %ul#breadcrumb
- %li.home
- %a{ :href => '/'} Home
- %li
- %a{ :href => '/services' } Services
- %li
- = @service.name
- %p
- %a{ :href => "/services/#{@service.id}.csv" }
- Download data as CSV
-
- %table
- %tr
- %th Date
- %th Directorate
- %th Supplier
- %th £
-
- - for payment in @service.payments
- %tr
- %td= payment.d.strftime("%d %b %Y")
- %td
- %a{ :href => '/directorates/' + payment.directorate.id.to_s }
- = payment.directorate.name
- %td
- %a{ :href => '/suppliers/' + payment.supplier.id.to_s }
- = payment.supplier.name
- %td.right= sprintf("%0d", payment.amount)
-
-
|