Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / views / customer / searchresults.rhtml
1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
2
3 <% if @customers.empty? %>
4 <p>Sorry, there were no results</p>
5 <% else %>
6 <table border="1">
7   <tr>
8     <th>Customer ID</th>
9     <th>Name</th>
10     <th>Phone</th>
11     <th>Balance</th>
12   </tr>
13
14 <% for customer in @customers %>
15   <tr>
16     <td><%=h customer.id %></td>
17     <td><%=link_to customer.name.to_s, :action => 'show', :id => customer %></td>
18     <td><%=h customer.phone %></td>
19     <td><%=h number_to_currency(customer.debt) %></td>
20     <td><%= link_to "Checked Out Items", :controller => :coitem, :action => 'filterbycustomerid', :id => customer %></td>
21     <td><%= link_to 'Edit', :action => 'edit', :id => customer %></td>
22     <td><%= link_to 'Remove', { :action => 'destroy', :id => customer }, :confirm => 'Are you sure?', :method => :post %></td>
23   </tr>
24 <% end %>
25 </table>
26 <% end %>