An open source, stand-alone, customisable public spending data web app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- .grid_12
- %h2= @page_title = @directorate.name + " Directorate"
-
- %ul#breadcrumb
- %li.home
- %a{ :href => '/'} Home
- %li
- %a{ :href => '/directorates' } Directorates
- %li
- = @directorate.name
-
- %table
- %tr
- %th Date
- %th Service
- %th Supplier
- %th £
-
- - for payment in @directorate.payments
- %tr
- %td= payment.d.strftime("%d %b %Y")
- %td
- %a{ :href => '/services/' + payment.service.id.to_s }
- = payment.service.name
- %td
- %a{ :href => '/suppliers/' + payment.supplier.id.to_s }
- = payment.supplier.name
- %td.right= sprintf("%0d", payment.amount)
-
-
|