Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / views / customer / show.rhtml
1 <p><b>Name: </b><%=h @customer.name %></p>
2 <p><b>Address: </b><%=h @customer.address %></p>
3 <p><b>Email: </b><%=h @customer.email %></p>
4 <p><b>Phone: </b><%=h @customer.phone %></p>
5 <p><b>Balance: </b><%=h number_to_currency(@customer.debt) %></p>
6
7 <%= link_to 'Edit', :action => 'edit', :id => @customer %> |
8 <%= link_to 'Back', :action => 'list' %>