Sha256: ce5647513f4ea95b0ce23e997e71769164002bb6865f8a45ada09e9ec1bd26f8
Contents?: true
Size: 720 Bytes
Versions: 32
Compression:
Stored size: 720 Bytes
Contents
<h1> Listing <%= plural_name.humanize %></h1> <table> <tr> <% for attribute in attributes -%> <th><%= attribute.column.human_name %></th> <% end -%> </tr> <%% for <%= singular_name %> in @<%= plural_name %> %> <tr> <% for attribute in attributes -%> <td><%%= h <%= singular_name %>.<%= attribute.name %> %></td> <% end -%> <td><%%= link_to 'Show', <%= singular_name %> %></td> <td><%%= link_to 'Edit', edit_<%= singular_name %>_path(<%= singular_name %>) %></td> <td><%%= link_to 'Destroy', <%= singular_name %>, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <%% end %> </table> <p><%%= link_to 'New <%= singular_name.humanize %>', new_<%= singular_name %>_path %></p>
Version data entries
32 entries across 32 versions & 12 rubygems