Sha256: 483b453d81f1c0e87ae1355ac8d9e0a496afe57d96688c1722b8dbfa03fcf30f
Contents?: true
Size: 572 Bytes
Versions: 13
Compression:
Stored size: 572 Bytes
Contents
<h2><%= t('shipment') %> # <%=@shipment.number%></h2> <table class="index" style="width:100%;"> <tr> <th><%= t('sku') %></th> <th><%= t('item_description') %></th> <th><%= t('qty') %></th> </tr> <% @order.line_items.each do |item| %> <tr> <td valign="top"><%=item.variant.sku %></td> <td width="300"> <%=item.variant.product.name %> <%= "(" + variant_options(item.variant) + ")" unless item.variant.option_values.empty? %> </td> <td valign="top"><%=item.quantity %></td> </tr> <% end %> </table>
Version data entries
13 entries across 13 versions & 3 rubygems