otwarchive-symphonyarchive/app/views/comments/edit.html.erb

22 lines
670 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= t(".page_heading") %></h2>
<%= error_messages_for :comment %>
<!--/descriptions-->
<!--subnav-->
<!--/subnav-->
<!--main content-->
<li class="comment group <%= cycle :odd, :even %>" id="comment_<%= @comment.id %>" role="article">
<%= render partial: "comments/comment_form", locals: { comment: @comment, commentable: @comment.commentable, button_name: t(".update") } %>
</li>
<!--/content-->
<!--subnav-->
<ul class="navigation actions" role="navigation">
<li><%= link_to t(".show"), @comment %></li>
<li><%= link_to t(".back"), @comment.commentable %></li>
</ul>
<!--/subnav-->