Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 8, 2017 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/ac103cca81f72bab9755134cc2af0ea2 to your computer and use it in GitHub Desktop.
Save shankardevy/ac103cca81f72bab9755134cc2af0ea2 to your computer and use it in GitHub Desktop.
<h1>Cart</h1>
<%= if Enum.empty?(@cart.line_items) do %>
<p>Your cart is empty</p>
<% else %>
<table class="table">
<thead>
<tr>
<th>Product name</th>
<th>Pack size</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<%= for item <- @cart.line_items do %>
<tr>
<td><%= item.product_name %></td>
<td><%= item.pack_size %></td>
<td><%= item.quantity %></td>
<td>₹ <%= item.unit_price %></td>
<td>₹ <%= item.total %></td>
</tr>
<% end %>
<tr>
<td colspan=4>Order Total</td>
<td>₹ <%= @cart.total %></td>
</tr>
</tbody>
</table>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment