instiki/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb

25 lines
697 B
Plaintext
Raw Normal View History

2007-02-10 00:12:31 +01:00
<h1>Listing <%= plural_name %></h1>
<table>
<tr>
<% for attribute in attributes -%>
<th><%= attribute.column.human_name %></th>
<% end -%>
</tr>
2007-02-10 00:12:31 +01:00
<%% 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 %> %></td>
2007-02-10 00:12:31 +01:00
<td><%%= link_to 'Edit', edit_<%= singular_name %>_path(<%= singular_name %>) %></td>
<td><%%= link_to 'Destroy', <%= singular_name %>, :confirm => 'Are you sure?', :method => :delete %></td>
2007-02-10 00:12:31 +01:00
</tr>
<%% end %>
</table>
<br />
<%%= link_to 'New <%= singular_name %>', new_<%= singular_name %>_path %>