Sha256: 12eb3a32207401c8b07c986ed404098bbb133c5941b3cf4cd25dd049b0f62a43
Contents?: true
Size: 908 Bytes
Versions: 1
Compression:
Stored size: 908 Bytes
Contents
<%% title "<%= plural_name.titleize %>" %> <table> <tr> <%- for attribute in model_attributes -%> <th><%= attribute.human_name.titleize %></th> <%- end -%> </tr> <%% for <%= instance_name %> in @<%= instances_name %> %> <tr> <%- for attribute in model_attributes -%> <td><%%= <%= instance_name %>.<%= attribute.name %> %></td> <%- end -%> <%- if action? :show -%> <td><%%= link_to "Show", <%= item_path %> %></td> <%- end -%> <%- if action? :edit -%> <td><%%= link_to "Edit", <%= item_path :action => :edit %> %></td> <%- end -%> <%- if action? :destroy -%> <td><%%= link_to "Destroy", <%= item_path %>, :confirm => 'Are you sure?', :method => :delete %></td> <%- end -%> </tr> <%% end %> </table> <%- if action? :new -%> <p><%%= link_to "New <%= singular_name.titleize %>", <%= item_path :action => :new %> %></p> <%- end -%>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thesilverspoon-0.0.3 | lib/templates/views/erb/index.html.erb |