25 lines
No EOL
976 B
Text
25 lines
No EOL
976 B
Text
<h1><%%= t("scaffold.pagetitle_index", model: <%= class_name %>.model_name.human(count: 2)) %></h1>
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th><%%= <%= class_name %>.human_attribute_name(:id) %></th>
|
|
<% attributes.each do |attribute| %>
|
|
<th><%%= <%= class_name %>.human_attribute_name(:<%= attribute.column_name %>) %></th>
|
|
<% end %>
|
|
</thead>
|
|
<tbody>
|
|
<%% @<%= plural_table_name %>.each do |<%= singular_table_name %>| %>
|
|
<tr>
|
|
<td><%%= link_to(<%= singular_table_name %>.id, url_for(<%= singular_table_name %>)) %></td>
|
|
<% attributes.each do |attribute| %>
|
|
<td><%%= link_to(<%= singular_table_name %>.<%= attribute.column_name %>, url_for(<%= singular_table_name %>)) %></td>
|
|
<% end %>
|
|
</tr>
|
|
<%% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="action-row">
|
|
<%%= link_to t("scaffold.link_new", model: <%= class_name %>.model_name.human), new_<%= singular_table_name %>_path %>
|
|
</div> |