Add Purchase system
[cs356-p2-videostore.git] / app / views / purchase / menu.rhtml
1 <h1>Purchase Menu</h1>
2
3 <ul>
4   <li>Customer ID: <%= @customer.id %></li>
5   <li>Customer Name: <%= @customer.name %></li>
6   <li>Total Price: <%= @total_price %></li>
7 </ul>
8
9 <ul>
10   <li><%=link_to 'Rent an Item', :action => 'rent_begin' %></li>
11   <li><%=link_to 'Buy Merchandise', :action => 'buy_begin' %></li>
12 </ul>
13
14 <%=link_to 'End Purchase', :action => 'index' %>