Files
grecia/app/views/comments/show.html.erb
Manuel Lucena c3d7d47c3f 20171004 - Refactored specs for polls comments
On branch mlucena-poll-comments
 Changes to be committed:
	modified:   app/views/comments/show.html.erb
	modified:   spec/features/polls/polls_spec.rb
2017-10-06 10:37:01 +02:00

15 lines
402 B
Plaintext

<div class="row">
<div class="small-12 column margin-top">
<%= back_link_to commentable_path(@comment),
t("comments.show.return_to_commentable") + @comment.commentable.title unless @comment != "Poll" %>
</div>
</div>
<section class="comments">
<div class="row">
<div id="comments" class="small-12 column">
<%= render @comment %>
</div>
</div>
</section>