scinote-web/app/views/result_comments/_index.html.erb

17 lines
552 B
Plaintext
Raw Normal View History

2016-09-20 23:06:07 +08:00
<hr>
<div class="col-xs-12 comments-title">
<h4>
<%=t('my_modules.results.comments_tab') %>
(<span id="comment-counter-<%= result.id %>"><%= comments.count %></span>)
</h4>
</div>
<%= render partial: 'shared/comments/comments', locals: {
object: result,
comments: comments,
can_create_comments: can_create_my_module_result_comments?(@my_module),
create_url: result_result_comments_path(result, format: :json),
more_url: result_result_comments_path(result, format: :json, from: comments.first&.id)
} %>