Sha256: 7f191981fca29ae58a7a1b17867c29585bd7c8e0e215f8705874aed4452a67f5
Contents?: true
Size: 755 Bytes
Versions: 7
Compression:
Stored size: 755 Bytes
Contents
<h1><%= t("sales_totals") %> </h1> <table class="admin-report"> <tbody> <tr> <th scope="row"><%= t("item_total") %>:</th> <td align="right"><%=number_to_currency @item_total%></td> </tr> <tr> <th scope="row"><%= t("shipping_total") %>:</th> <td align="right"><%=number_to_currency @ship_total%></td> </tr> <tr> <th scope="row"><%= t("tax_total") %>:</th> <td align="right"><%=number_to_currency @tax_total%></td> </tr> <tr> <th scope="row"><%= t("sales_total") %>:</th> <td align="right"><%=number_to_currency @sales_total%></td> </tr> </tbody> </table> <% content_for :sidebar do %> <%= render :partial => 'admin/shared/report_criteria', :locals => {} %> <% end %>
Version data entries
7 entries across 7 versions & 2 rubygems