30 lines
675 B
Plaintext
30 lines
675 B
Plaintext
<h1>Listing statistics</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
<th>User</th>
|
|
<th>Status</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @statistics.each do |statistic| %>
|
|
<tr>
|
|
<td><%= statistic.name %></td>
|
|
<td><%= statistic.description %></td>
|
|
<td><%= statistic.user_id %></td>
|
|
<td><%= statistic.status %></td>
|
|
<td><%= link_to 'Show', statistic %></td>
|
|
<td><%= link_to 'Edit', edit_statistic_path(statistic) %></td>
|
|
<td><%= link_to 'Destroy', statistic, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Statistic', new_statistic_path %>
|