20 lines
769 B
Plaintext
20 lines
769 B
Plaintext
<% cache [locale_and_user_status, @current_order, commentable_cache_key(@poll), @comment_tree.comments, @comment_tree.comment_authors, @poll.comments_count, @comment_flags] do %>
|
|
<div class="row comments">
|
|
<div id="comments" class="small-12 column">
|
|
<%= render "shared/wide_order_selector", i18n_namespace: "comments" %>
|
|
|
|
<% if user_signed_in? %>
|
|
<%= render "comments/form", { commentable: @poll, parent_id: nil, toggeable: false } %>
|
|
<% else %>
|
|
<br>
|
|
<%= render "shared/login_to_comment" %>
|
|
<% end %>
|
|
|
|
<% @comment_tree.root_comments.each do |comment| %>
|
|
<%= render "comments/comment", comment: comment %>
|
|
<% end %>
|
|
<%= paginate @comment_tree.root_comments %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|