Sha256: 0191cc9175c362fbc5827db0790784e2e352b5bc06753731b79465b6519b97b4
Contents?: true
Size: 861 Bytes
Versions: 1
Compression:
Stored size: 861 Bytes
Contents
<% content_for :page_title do %> <%= Spree.t(:sales_totals) %> <% end %> <% content_for :page_actions do %> <%= back_to_list_button(Spree.t(:report), admin_reports_path) %> <% end %> <div class="well"> <%= render :partial => 'spree/admin/shared/report_order_criteria' %> </div> <table class="table table-bordered 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> <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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_backend-3.1.0.rc1 | app/views/spree/admin/reports/sales_total.html.erb |