6f5abd1c8a9b93d5bdddbd1922feae9c5f897a9d
[cs356-p2-videostore.git] / app / views / purchase / menu.rhtml
1 <h1>Purchase Menu</h1>
2
3 <h3>Customer Information</h3>
4 <ul>
5   <li>Customer ID: <%= @customer.id %></li>
6   <li>Customer Name: <%= @customer.name %></li>
7   <li>Total Price: <%= @total_price %></li>
8 </ul>
9
10 <h3>Items Purchased</h3>
11 <% if @items.empty? %>
12   None
13 <% else %>
14 <ul>
15 <% for item in @items %>
16   <li><%= item.title %></li>
17 <% end %>
18 </ul>
19 <% end %>
20
21 <ul>
22   <li><%=link_to 'Rent an Item', :action => 'rent_begin' %></li>
23   <li><%=link_to 'Buy Merchandise', :action => 'buy_begin' %></li>
24 </ul>
25
26 <%=link_to 'End Purchase', :action => 'index' %>