Remove unused commentable tree partial

It was created in commit 83d254ad, but it was never used, since the
commit creating it removed the code rendering the
`budgets/investments/comments` partial, which this partial was supposed
to replace.
This commit is contained in:
Javi Martín
2020-05-10 01:13:14 +02:00
parent 2fee7099ae
commit fbaa5c2388

View File

@@ -1,33 +0,0 @@
<% valuation = local_assigns.fetch(:valuation, false) %>
<% allow_comments = local_assigns.fetch(:allow_comments, true) %>
<% cache [locale_and_user_status, @current_order, commentable_cache_key(@investment), @comment_tree.comments, @comment_tree.comment_authors, @investment.comments_count, @comment_flags] do %>
<section class="expanded comments">
<div class="row">
<div id="comments" class="small-12 column">
<h2>
<%= t("debates.show.comments_title") %>
<span class="js-comments-count">(<%= @investment.comments_count %>)</span>
</h2>
<%= render "shared/wide_order_selector", i18n_namespace: "comments" %>
<% if user_signed_in? && allow_comments %>
<%= render "comments/form", { commentable: @investment,
parent_id: nil,
toggeable: false,
valuation: valuation } %>
<% else %>
<br>
<%= render "shared/login_to_comment" %>
<% end %>
<% @comment_tree.root_comments.each do |comment| %>
<%= render "comments/comment", { comment: comment,
valuation: valuation,
allow_comments: allow_comments } %>
<% end %>
<%= paginate @comment_tree.root_comments %>
</div>
</div>
</section>
<% end %>