mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
95 lines
4 KiB
Text
95 lines
4 KiB
Text
<% my_module ||= report_element.my_module %>
|
|
<% timestamp = my_module.created_at %>
|
|
<% export_all = defined?(export_all) && export_all %>
|
|
<div class="report-element report-module-element">
|
|
<div class="report-element-body">
|
|
<h4 class="module-name">
|
|
<%= link_to my_module.name, protocols_my_module_url(my_module), target: :_blank %>
|
|
<% if my_module.archived? %>
|
|
<span class="label label-warning"><%= t('search.index.archived') %></span>
|
|
<% end %>
|
|
</h4>
|
|
<div class="user-time">
|
|
<%= t('projects.reports.elements.module.user_time', timestamp: l(timestamp, format: :full)) %>
|
|
</div>
|
|
<p class="module-start-date">
|
|
<% if my_module.started_on.present? %>
|
|
<%= t('projects.reports.elements.module.started_on', started_on: l(my_module.started_on, format: :full)) %>
|
|
<% end %>
|
|
</p>
|
|
<p class="module-due-date">
|
|
<% if my_module.due_date.present? %>
|
|
<%= t('projects.reports.elements.module.due_date', due_date: l(my_module.due_date, format: :full)) %>
|
|
<% end %>
|
|
</p>
|
|
<p class="module-status">
|
|
<% status = my_module.my_module_status %>
|
|
<%= t('projects.reports.elements.module.status') %>
|
|
<span class="status-block" style="background: <%= status.color %>">
|
|
<%= status.name %>
|
|
</span>
|
|
<% if my_module.completed? %>
|
|
<span style="margin-left: 10px;">
|
|
<%= t('my_modules.states.completed') %>
|
|
<%= l(my_module.completed_on, format: :full) %>
|
|
</span>
|
|
<% end %>
|
|
</p>
|
|
<div class="row module-tags">
|
|
<div class="pull-left">
|
|
<%= t('projects.reports.elements.module.tags_header') %>
|
|
</div>
|
|
<% if my_module.tags.present? %>
|
|
<% my_module.tags.each do |tag| %>
|
|
<div class="pull-left module-tag" style="background-color: <%= tag.color %>;">
|
|
<%= tag.name %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<% if my_module.description.present? %>
|
|
<%= custom_auto_link(my_module.prepare_for_report(:description, export_all),
|
|
team: current_team,
|
|
simple_format: false,
|
|
base64_encoded_imgs: export_all) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="report-element-children">
|
|
<%= render partial: 'reports/elements/my_module_protocol_element.html.erb', locals: { protocol: my_module.protocol } %>
|
|
|
|
<% filter_steps_for_report(my_module.protocol.steps, @settings).order(:position).each do |step| %>
|
|
<%= render partial: 'reports/elements/my_module_step_element.html.erb', locals: { step: step, export_all: export_all } %>
|
|
<% end %>
|
|
|
|
|
|
<div class="results-title-name">
|
|
<%= t('projects.reports.elements.module.results') %>
|
|
</div><br>
|
|
|
|
<% order_results_for_report(my_module.results, @settings.dig('task', 'result_order')).each do |result| %>
|
|
<% if result.is_asset && @settings.dig('task', 'file_results') %>
|
|
<%= render partial: 'reports/elements/my_module_result_asset_element.html.erb', locals: { result: result, report: report, export_all: export_all } %>
|
|
<% elsif result.is_table && @settings.dig('task', 'table_results') %>
|
|
<%= render partial: 'reports/elements/my_module_result_table_element.html.erb', locals: { result: result, export_all: export_all } %>
|
|
<% elsif result.is_text && @settings.dig('task', 'text_results') %>
|
|
<%= render partial: 'reports/elements/my_module_result_text_element.html.erb', locals: { result: result, export_all: export_all } %>
|
|
<% end %>
|
|
<% end %>
|
|
</div><br>
|
|
|
|
<% if defined?(children) %>
|
|
<div class="report-element-children">
|
|
<%= children %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @settings.dig('task', 'activities') %>
|
|
<div class="report-element-children">
|
|
<%= render partial: 'reports/elements/my_module_activity_element.html.erb', locals: { my_module: my_module, export_all: export_all } %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|