|
- .grid_12
- %ul#breadcrumb
- %li.home
- %a{ :href => '/'} Home
- %li
- %a{ :href => '/services' } Services
- %li
- = @service.name
-
- %h2= @page_title = @service.name
-
- %p
- A service in the
- %a{ :href => '/directorates/' + @service.directorate.slug }
- = @service.directorate.name
- Directorate
-
- %p.noprint
- %a{ :href => "/services/#{@service.slug}/payments" }
- Payments to Suppliers details for
- = @service.name
- »
-
- .clear
-
- .grid_9
-
- %h3
- Summary for
- = nicedate(@d_start)
- to
- = nicedate(@d_end)
-
- %table
- %tr
- %th.right Payments
- %th.right Total
- %th.right Max
- %th.right Min
- %th.right Average
-
- %tr
- %td.right= commify(@count)
- %td.right= commify(sprintf("£%0d", @total))
- %td.right= commify(sprintf("£%0d", @max))
- %td.right= commify(sprintf("£%0d", @min))
- %td.right= commify(sprintf("£%0d", @avg))
-
- %h3
- Suppliers by Spend for
- = nicedate(@d_start)
- to
- = nicedate(@d_end)
-
-
- %table
- %tr
- %th Supplier
- %th Total £
- %th Total %
- - for row in @results
- %tr
- %td
- %a{ :href => "/suppliers/#{row['supplier_slug']}" }
- = row['supplier_name']
- %td.right= commify(sprintf("%0d", row['total']))
- %td.right= sprintf("%0.1f", row['total'] / @total * 100)
-
- .clear
- <div class="grid_9 noprint">
- = haml_partial "comment_header"
- <div id="disqus_thread" class="noprint"></div>
- <script type="text/javascript">
- var disqus_developer = 1;
- (function() {
- var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- dsq.src = 'http://armchairauditor.disqus.com/embed.js';
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
- })();
- </script>
- <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript=armchairauditor">comments powered by Disqus.</a></noscript>
- <a href="http://disqus.com" class="dsq-brlink noprint">Comments powered by <span class="logo-disqus">Disqus</span></a>
- </div>
-
|