3 <h3>Customer Information</h3>
5 <li>Customer ID: <%= @customer.id %></li>
6 <li>Customer Name: <%= @customer.name %></li>
7 <li>Total Price: <%= @total_price %></li>
10 <h3>Items Purchased</h3>
11 <% if @items.empty? %>
15 <% for item in @items %>
16 <li><%= item.title %></li>
22 <li><%=link_to 'Rent an Item', :action => 'rent_begin' %></li>
23 <li><%=link_to 'Buy Merchandise', :action => 'buy_begin' %></li>
26 <%=link_to 'End Purchase', :action => 'index' %>