29 lines
No EOL
821 B
Text
29 lines
No EOL
821 B
Text
<h1><%= t("scaffold.pagetitle_index", model: Report.model_name.human(count: 2)) %></h1>
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th><%= Report.human_attribute_name(:id) %></th>
|
|
|
|
<th><%= Report.human_attribute_name(:name) %></th>
|
|
|
|
<th><%= Report.human_attribute_name(:comment) %></th>
|
|
|
|
</thead>
|
|
<tbody>
|
|
<% @reports.each do |report| %>
|
|
<tr>
|
|
<td><%= link_to(report.id, url_for([:work, report])) %></td>
|
|
|
|
<td><%= link_to(report.name, url_for([:work, report])) %></td>
|
|
|
|
<td><%= link_to(report.comment, url_for([:work, report])) %></td>
|
|
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="action-row">
|
|
<%= link_to t("scaffold.link_new", model: Report.model_name.human), new_report_path %>
|
|
</div> |