Sha256: 34c0d31ae4cda6c896dd9d10d19c6bd896f5cd8217244be9d377cc1ed8d475ae
Contents?: true
Size: 819 Bytes
Versions: 7
Compression:
Stored size: 819 Bytes
Contents
<h2>Order #<%= @order.identifier %></h2> <table id="bodega-cart"> <thead> <tr><th class="product-name"><%= t 'bodega.product' %></th><th class="price"><%= t 'bodega.price' %></th><th class="total"><%= t 'bodega.total' %></th></tr> </thead> <tbody> <% @order.order_products.each do |order_product| -%> <tr> <td class="product-name"> <%= order_product.quantity %> x <%= order_product.name %> </td> <td class="price"> <%= humanized_money_with_symbol order_product.price %> </td> <td class="subtotal"> <%= humanized_money_with_symbol order_product.subtotal %> </td> </tr> <% end -%> <tr> <td colspan="2"></td> <td><%= humanized_money_with_symbol @order.total %></td> <td></td> </tr> </tbody> </table>
Version data entries
7 entries across 7 versions & 1 rubygems