forked from bofh/fetsite
22 lines
424 B
Plaintext
22 lines
424 B
Plaintext
<h1>Listing comments</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @comments.each do |comment| %>
|
|
<tr>
|
|
<td><%= link_to 'Show', comment %></td>
|
|
<td><%= link_to 'Edit', edit_comment_path(comment) %></td>
|
|
<td><%= link_to 'Destroy', comment, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Comment', new_comment_path %>
|