Sha256: 82f0b2a935001e8fc46e0a2fd115a38a21f6a5d0d5f6ae5b656f0399e9da2bdf
Contents?: true
Size: 773 Bytes
Versions: 8
Compression:
Stored size: 773 Bytes
Contents
<h1>Listing <%= plural_name %></h1> <table> <tr> <%% for column in <%= class_name %>.content_columns %> <th><%%= column.human_name %></th> <%% end %> </tr> <%% for <%= singular_name %> in @<%= plural_name %> %> <tr> <%% for column in <%= class_name %>.content_columns %> <td><%%=h <%= singular_name %>[column.name] %></td> <%% end %> <td><%%= link_to 'Show', :action => 'show<%= suffix %>', :id => <%= singular_name %>.id %></td> <td><%%= link_to 'Edit', :action => 'edit<%= suffix %>', :id => <%= singular_name %>.id %></td> <td><%%= link_to 'Destroy', :action => 'destroy<%= suffix %>', :id => <%= singular_name %>.id %></td> </tr> <%% end %> </table> <br /> <%%= link_to 'New <%= singular_name %>', :action => 'new<%= suffix %>' %>
Version data entries
8 entries across 8 versions & 2 rubygems