Sha256: 60cf52567a018cab6cc27bfe571f0fb0e66498f9be81168f9fa651a2019f8b5f
Contents?: true
Size: 621 Bytes
Versions: 5
Compression:
Stored size: 621 Bytes
Contents
<h1>Listing stylesheets</h1> <table> <tr> <% for column in Stylesheet.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for stylesheet in @stylesheets %> <tr> <% for column in Stylesheet.content_columns %> <td><%=h stylesheet[column.name] %></td> <% end %> <td><%= link_to 'Show', :action => 'show', :id => stylesheet.id %></td> <td><%= link_to 'Edit', :action => 'edit', :id => stylesheet.id %></td> <td><%= link_to 'Destroy', :action => 'destroy', :id => stylesheet.id %></td> </tr> <% end %> </table> <br /> <%= link_to 'New stylesheet', :action => 'new' %>
Version data entries
5 entries across 5 versions & 1 rubygems