mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
39 lines
1.8 KiB
Text
39 lines
1.8 KiB
Text
<% if step.blank? and @step.present? then step = @step end %>
|
|
<% if order.blank? and @order.present? then order = @order end %>
|
|
<% comments = step.step_comments.order(created_at: order) %>
|
|
<% timestamp = Time.current + 1.year %>
|
|
<% for_export_all = defined?(export_all) && export_all %>
|
|
<div class="report-element report-comments-element report-step-comments-element" data-ts="<%= timestamp.to_i %>" data-order="asc" data-type="step_comments" data-id='{ "step_id": <%= step.id %> }' data-scroll-id="<%= step.id %>" data-name="<%=t "projects.reports.elements.step_comments.sidebar_name" %>" data-icon-class="fas fa-comment">
|
|
<div class="report-element-header">
|
|
<div class="row">
|
|
<div class="pull-left comments-icon">
|
|
<span class="fas fa-comment"></span>
|
|
</div>
|
|
<div class="pull-left comments-name">
|
|
<%=t "projects.reports.elements.step_comments.name", step: step.name %>
|
|
</div>
|
|
<div class="pull-right controls">
|
|
<%= render partial: "reports/elements/element_controls.html.erb", locals: { show_sort: true } %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="report-element-body">
|
|
<div class="row">
|
|
<div class="col-xs-12 comments-container simple">
|
|
<% if comments.any? %>
|
|
<ul class="no-style content-comments">
|
|
<% comments.each do |comment| %>
|
|
<%= render partial: 'shared/comments/item.html.erb',
|
|
locals: { comment: comment, readonly: true, report: true, export_all: for_export_all } %>
|
|
<% end %>
|
|
</ul>
|
|
<% else %>
|
|
<em><%=t "projects.reports.elements.step_comments.no_comments" %></em>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="report-element-children">
|
|
<%= children if (defined? children and children.present?) %>
|
|
</div>
|
|
</div>
|