Sha256: 135fcf7471c53b5f9fd98df373d49a3cfe276c3dee815bb12efb8ab3e3b4306e
Contents?: true
Size: 1.03 KB
Versions: 14
Compression:
Stored size: 1.03 KB
Contents
<div class='row'> <div class='span10 well'> <table class='table table-striped'> <thead> <tr> <th colspan="2" class="start">Description</th> <th>Price</th> <th>Quantity</th> <th>Total</th> </tr> </thead> <tbody> <% @order.line_items.each do |line_item| %> <%= render 'line_item', line_item: line_item %> <% end %> <% if @order.shipping_method %> <tr> <td> </td> <td> Shippping </td> <td> <%= number_to_currency(@order.shipping_method.shipping_cost) %> </td> <td> </td> <td><%= number_to_currency(@order.shipping_method.shipping_cost) %> </td> </tr> <% end %> <tr> <td> </td> <td>Total</td> <td> </td> <td> </td> <td> <strong> <%= number_to_currency(@order.total_amount) %> </strong> </td> </tr> </tbody> </table> </div> </div>
Version data entries
14 entries across 14 versions & 1 rubygems