Sha256: 2d813740a8a3108a1f5a2385589237957ec4bbe51f37c10a9c27d9f518b45b7a
Contents?: true
Size: 1.02 KB
Versions: 15
Compression:
Stored size: 1.02 KB
Contents
<% content_for :page_title do %> <%= Spree.t(:sales_totals) %> <% end %> <% content_for :page_actions do %> <li><%= link_to_with_icon 'icon-arrow-left', Spree.t(:back_to_reports_list), spree.admin_reports_url, :class => 'button' %></li> <% end %> <% content_for :table_filter_title do %> <%= Spree.t(:date_range) %> <% end %> <% content_for :table_filter do %> <%= render :partial => 'spree/admin/shared/report_order_criteria', :locals => {} %> <% end %> <table class="admin-report" data-hook="sales_total"> <thead> <tr> <th><%= Spree.t(:currency) %></th> <th><%= Spree.t(:item_total) %></th> <th><%= Spree.t(:adjustment_total) %></th> <th><%= Spree.t(:sales_total) %></th> </tr> </thead> <tbody> <% @totals.each do |key, row| %> <tr class="align-center"> <td><%= key %></td> <td><%= row[:item_total].format %></td> <td><%= row[:adjustment_total].format %></td> <td><%= row[:sales_total].format %></td> </tr> <% end %> </tbody> </table>
Version data entries
15 entries across 15 versions & 1 rubygems