1 <h1>Listing <%= plural_name %></h1>
5 <% for attribute in attributes -%>
6 <th><%= attribute.column.human_name %></th>
10 <%% @<%= plural_name %>.each do |<%= singular_name %>| %>
12 <% for attribute in attributes -%>
13 <td><%%=h <%= singular_name %>.<%= attribute.name %> %></td>
15 <td><%%= link_to 'Show', <%= singular_name %> %></td>
16 <td><%%= link_to 'Edit', edit_<%= singular_name %>_path(<%= singular_name %>) %></td>
17 <td><%%= link_to 'Destroy', <%= singular_name %>, :confirm => 'Are you sure?', :method => :delete %></td>
24 <%%= link_to 'New <%= singular_name %>', new_<%= singular_name %>_path %>