1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
3 <% if @customers.empty? %>
4 <p>Sorry, there were no results</p>
9 <% for column in Customer.content_columns %>
10 <th><%= column.human_name %></th>
14 <% for customer in @customers %>
16 <td><%=h customer.id %></td>
17 <% for column in Customer.content_columns %>
18 <td><%=h customer.send(column.name) %></td>
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>