Sha256: 919c0905d3bc8f80331a5bd038f12efc90c34439c3da6f86cbcb882ef60f45f6
Contents?: true
Size: 712 Bytes
Versions: 4
Compression:
Stored size: 712 Bytes
Contents
<div class="well"> <h3><%= t(:order_summary) %></h3> <table class="table table-bordered"> <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> </div>
Version data entries
4 entries across 4 versions & 1 rubygems