12 lines
345 B
Plaintext
12 lines
345 B
Plaintext
<h1><%= t("admin.comments.index.title") %></h1>
|
|
|
|
<ul>
|
|
<% @comments.each do |comment| %>
|
|
<li id="<%= dom_id(comment) %>">
|
|
<%= comment.body %>
|
|
|
|
<%= link_to t("admin.actions.restore"), restore_admin_comment_path(comment),
|
|
method: :put, data: { confirm: t("admin.actions.confirm") } %>
|
|
</li>
|
|
<% end %>
|
|
</ul> |