Sha256: 94ba78e916e2a96e37b8d0879279f24146a72216bbd16fe8de6097d231087e92
Contents?: true
Size: 761 Bytes
Versions: 14
Compression:
Stored size: 761 Bytes
Contents
<h1>Listing <%= @scaffold_plural_name %></h1> <table> <tr> <% for column in @scaffold_class.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for entry in instance_variable_get("@#{@scaffold_plural_name}") %> <tr> <% for column in @scaffold_class.content_columns %> <td><%= entry.send(column.name) %></td> <% end %> <td><%= link_to "Show", :action => "show#{@scaffold_suffix}", :id => entry.id %></td> <td><%= link_to "Edit", :action => "edit#{@scaffold_suffix}", :id => entry.id %></td> <td><%= link_to "Destroy", :action => "destroy#{@scaffold_suffix}", :id => entry.id %></td> </tr> <% end %> </table> <br /> <%= link_to "New #{@scaffold_singular_name}", :action => "new#{@scaffold_suffix}" %>
Version data entries
14 entries across 14 versions & 2 rubygems