Prettify the Customer pages
[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   <% for column in Customer.content_columns %>
10     <th><%= column.human_name %></th>
11   <% end %>
12   </tr>
13
14 <% for customer in @customers %>
15   <tr>
16   <td><%=h customer.id %></td>
17   <% for column in Customer.content_columns %>
18     <td><%=h customer.send(column.name) %></td>
19   <% end %>
20     <td><%= link_to 'Show', :action => 'show', :id => customer %></td>
21     <td><%= link_to 'Edit', :action => 'edit', :id => customer %></td>
22     <td><%= link_to 'Destroy', { :action => 'destroy', :id => customer }, :confirm => 'Are you sure?', :post => true %></td>
23   </tr>
24 <% end %>
25 </table>
26 <% end %>