Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 8, 2017 14:23
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/a74b8387c3999b87900b67b02112298e to your computer and use it in GitHub Desktop.
Save shankardevy/a74b8387c3999b87900b67b02112298e to your computer and use it in GitHub Desktop.
<%= form_for @order_changeset, checkout_path(@conn, :update), fn f -> %>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h2>Order Summary</h2>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Product name</th>
<th>Pack size</th>
<th class="text-right">Quantity</th>
<th class="text-right">Subtotal</th>
</tr>
</thead>
<tbody>
<%= for {item, i} <- Enum.with_index(@order.line_items, 1) do %>
<tr>
<td><%= i %></td>
<td><%= item.product_name %></td>
<td><%= item.pack_size %></td>
<td class="text-right"><%= item.quantity %></td>
<td class="text-right">₹ <%= item.total %></td>
</tr>
<% end %>
<tr>
<td colspan=4 class="text-right">Total</td>
<td class="text-right">₹ <%= @order.total %></td>
</tr>
</tbody>
</table>
<div class="form-group">
<%= label f, :comments, class: "control-label" %>
<%= textarea f, :comments, class: "form-control" %>
<%= error_tag f, :comments %>
</div>
<div class="form-group float-right">
<%= submit "Confirm", class: "btn btn-primary" %>
</div>
</div>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment