Sha256: 70423aba8b8cd39e15dc1486f0b97dd7b122c192dd86620d3135222670190e69
Contents?: true
Size: 661 Bytes
Versions: 27
Compression:
Stored size: 661 Bytes
Contents
<h3><%= t(:order_summary) %></h3> <table> <tbody> <tr> <td><strong><%= t('item_total') %>:</strong></td> <td><strong><%= number_to_currency order.item_total %></strong></td> </tr> <tbody id="summary-order-charges"> <% order.adjustments.each do |adjustment| %> <tr> <td><%= adjustment.label %>: </td> <td><%= number_to_currency adjustment.amount %></td> </tr> <% end %> </tbody> <tr> <td><strong><%= t('order_total') %>:</strong></td> <td><strong><span id='summary-order-total'><%= number_to_currency @order.total %></span></strong></td> </tr> </tbody> </table>
Version data entries
27 entries across 27 versions & 6 rubygems