End chapter 8
[depot.git] / app / views / store / add_to_cart.html.erb
1 <h2>Your Whimsical Cart</h2>
2
3 <div class="cart-title">Your Cart</div>
4 <table>
5 <% for item in @cart.items %>
6 <tr>
7 <td><%= item.quantity %>&times;</td>
8 <td><%=h item.title %></td>
9 <td class="item-price"><%= number_to_currency(item.price, :unit => "£") %></td>
10 </tr>
11 <% end %>
12 <tr class="total-line">
13 <td colspan="2">Total</td>
14 <td class="total-cell"><%= number_to_currency(@cart.total_price, :unit => "£") %></td>
15 </tr>
16 </table>
17
18 <%= button_to 'Empty cart', :action => :empty_cart %>