Sha256: ff13cc4cd10c8649f00a2416eb0b5219181d7cba318a8d04bb21a7e62baa6080
Contents?: true
Size: 752 Bytes
Versions: 23
Compression:
Stored size: 752 Bytes
Contents
<h1>Listing <%= plural_name %></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 %>_path(<%= singular_name %>) %></td> <td><%%= link_to 'Edit', edit_<%= singular_name %>_path(<%= singular_name %>) %></td> <td><%%= link_to 'Destroy', <%= singular_name %>_path(<%= singular_name %>), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <%% end %> </table> <br /> <%%= link_to 'New <%= singular_name %>', new_<%= singular_name %>_path %>
Version data entries
23 entries across 23 versions & 5 rubygems