mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
27 lines
1,012 B
Text
27 lines
1,012 B
Text
|
<h5 class="text-center"><%= t('projects.canvas.popups.comments_tab') %></h5>
|
||
|
<hr>
|
||
|
<ul class="no-style double-line content-comments">
|
||
|
<% if @comments.size == 0 then %>
|
||
|
<li class="no-comments"><em><%= t 'projects.canvas.popups.no_comments' %></em></li>
|
||
|
<% else %>
|
||
|
<%= render 'my_module_comments/list.html.erb', comments: @comments %>
|
||
|
<% end %>
|
||
|
<% if @comments.length == @per_page %>
|
||
|
<li class="text-center">
|
||
|
<a class="btn btn-default btn-more-comments" href="<%= more_comments_url %>" data-remote="true">
|
||
|
<%=t "projects.canvas.popups.more_comments" %>
|
||
|
</a>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
<% if can_add_comment_to_module(@my_module) %>
|
||
|
<ul class="no-style double-line">
|
||
|
<li>
|
||
|
<hr>
|
||
|
<%= bootstrap_form_for :comment, url: { format: :json }, method: :post, remote: true do |f| %>
|
||
|
<%= f.text_field :message, hide_label: true, placeholder: t("projects.canvas.popups.comment_placeholder"), append: f.submit("+"), help: '.' %>
|
||
|
<% end %>
|
||
|
</li>
|
||
|
</ul>
|
||
|
<% end %>
|