2016-07-28 22:41:10 +08:00
|
|
|
<h5 class="text-center"><%= t('experiments.canvas.popups.comments_tab') %></h5>
|
2016-02-12 23:52:43 +08:00
|
|
|
<hr>
|
|
|
|
<ul class="no-style double-line content-comments">
|
|
|
|
<% if @comments.length == @per_page %>
|
2016-08-25 15:26:45 +08:00
|
|
|
<li class="comment-more text-center">
|
2016-02-12 23:52:43 +08:00
|
|
|
<a class="btn btn-default btn-more-comments" href="<%= more_comments_url %>" data-remote="true">
|
2016-07-28 22:41:10 +08:00
|
|
|
<%=t "experiments.canvas.popups.more_comments" %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2016-09-27 15:00:02 +08:00
|
|
|
<% if @comments.size == 0 then %>
|
|
|
|
<li class="no-comments"><em><%= t 'experiments.canvas.popups.no_comments' %></em></li>
|
|
|
|
<% else %>
|
|
|
|
<%= render 'my_module_comments/list.html.erb', comments: @comments %>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</ul>
|
|
|
|
<% if can_add_comment_to_module(@my_module) %>
|
|
|
|
<ul class="no-style double-line">
|
|
|
|
<li>
|
|
|
|
<hr>
|
2016-11-08 18:29:55 +08:00
|
|
|
<%= bootstrap_form_for :comment, url: { format: :json }, method: :post, remote: true, html: { class: 'comment-form' } do |f| %>
|
2017-01-24 17:51:12 +08:00
|
|
|
<%= f.smart_text_area :message,
|
|
|
|
single_line: true,
|
|
|
|
hide_label: true,
|
|
|
|
placeholder: t("experiments.canvas.popups.comment_placeholder"),
|
|
|
|
append: f.submit("+"),
|
|
|
|
help: '.',
|
|
|
|
data: { 'atwho-edit' => '' } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<% end %>
|