2016-09-20 20:13:40 +08:00
|
|
|
<hr>
|
2016-09-29 22:43:19 +08:00
|
|
|
<div class="col-xs-12">
|
2016-09-29 20:37:29 +08:00
|
|
|
<strong><%= t('protocols.steps.comments_tab') %></strong>
|
|
|
|
</div>
|
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 16:26:40 +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">
|
|
|
|
<%=t "general.more_comments" %>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2016-09-16 21:22:24 +08:00
|
|
|
<% if @comments.size == 0 then %>
|
|
|
|
<li class="no-comments"><em><%= t 'general.no_comments' %></em></li>
|
|
|
|
<% else %>
|
|
|
|
<%= render 'step_comments/list.html.erb', comments: @comments %>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</ul>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if can_add_step_comment_in_protocol(@protocol) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<ul class="no-style double-line">
|
|
|
|
<li>
|
|
|
|
<hr>
|
2016-09-16 15:04:21 +08:00
|
|
|
<%= bootstrap_form_for :comment, url: { format: :json }, html: { class: 'comment-form', id: "step-comment-#{@step.id}" }, method: :post, remote: true do |f| %>
|
2016-11-08 22:48:30 +08:00
|
|
|
<%= f.text_area :message, class: 'textarea-sm', hide_label: true, placeholder: t("general.comment_placeholder"), append: f.submit("+"), help: '.' %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<% end %>
|