mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 22:51:24 +08:00
26 lines
936 B
Text
26 lines
936 B
Text
<div class="report-element report-step-attachment-element report-step-text-element">
|
|
<div class="report-element-header">
|
|
<div class="text-name">
|
|
<% if step_text.name.present? %>
|
|
<em>
|
|
<%= truncate(step_text.name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
|
|
</em>
|
|
<% end %>
|
|
</div>
|
|
<div class="report-element-body">
|
|
<% if step_text.text.present? %>
|
|
<%= custom_auto_link(step_text.prepare_for_report(:text, export_all),
|
|
team: current_team,
|
|
simple_format: false,
|
|
tags: %w(img),
|
|
base64_encoded_imgs: export_all) %>
|
|
<% else %>
|
|
<em><%= t('projects.reports.elements.step.no_description') %></em>
|
|
<% end %>
|
|
</div>
|
|
<% if defined?(children) %>
|
|
<div class="report-element-children">
|
|
<%= children %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|