22 lines
670 B
Text
22 lines
670 B
Text
|
|
<!--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-->
|