25 lines
660 B
Text
25 lines
660 B
Text
|
|
<h1><%= t("scaffold.pagetitle_index", model: Project.model_name.human(count: 2)) %></h1>
|
||
|
|
|
||
|
|
<table class="table table-striped">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th><%= Project.human_attribute_name(:id) %></th>
|
||
|
|
|
||
|
|
<th><%= Project.human_attribute_name(:name) %></th>
|
||
|
|
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<% @projects.each do |project| %>
|
||
|
|
<tr>
|
||
|
|
<td><%= link_to(project.id, url_for(project)) %></td>
|
||
|
|
|
||
|
|
<td><%= link_to(project.name, url_for(project)) %></td>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
<% end %>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<div class="action-row">
|
||
|
|
<%= link_to t("scaffold.link_new", model: Project.model_name.human), new_project_path %>
|
||
|
|
</div>
|