Fix 'maintenence' to 'maintenance' + layout reorganization
[cs356-p2-videostore.git] / app / views / merchandise / show.rhtml
1 <p><b>Merchandise ID: </b><%=h @merchandise.id.to_s %></p>
2 <p><b>Title: </b><%=h @merchandise.title %></p>
3 <p><b>Quantity Remaining: </b><%=h @merchandise.quantity %></p>
4 <p><b>Price Per Unit: </b><%=h number_to_currency(@merchandise.price) %></p>
5
6 <%= link_to 'Edit', :action => 'edit', :id => @merchandise %> |
7 <%= link_to 'Back', :action => 'list' %>