scinote-web/app/views/reports/elements/_step_table_element.html.erb
ajugo 74516da01a
Update reports for plate templates and add headers to docx tables [SCI-8375] (#5373)
Update reports for plate templates and add headers to docx tables [SCI-8375]
2023-05-10 16:15:14 +02:00

37 lines
1.3 KiB
Plaintext

<% table ||= report_element.table %>
<% timestamp = table.created_at %>
<div class="report-element report-step-attachment-element report-step-table-element">
<div class="report-element-header">
<div class="table-name">
<% if defined? export_all and export_all %>
<% file_link = @obj_filenames.dig(:tables, table.id, :file) %>
<a href="<%= file_link %>">
<em>
<%= file_link&.split('/')&.last %>
</em>
</a>
<% else %>
<% if table.try(:name) %>
<em>
<%= truncate(table.name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
</em>
<% end %>
<% end %>
</div>
<div class="user-time">
<%= t("projects.reports.elements.#{table_type}.user_time", timestamp: l(timestamp, format: :full)) %>
</div>
</div>
<div class="report-element-body">
<input type="hidden" class="hot-table-contents" value="<%= table.contents_utf_8 %>" />
<input type="hidden" class="hot-table-metadata" value="<%= table.metadata ? table.metadata.to_json : nil %>" />
<div class="hot-table-container"></div>
<table class="report-common-table-format"></table>
</div>
<% if defined?(children) %>
<div class="report-element-children">
<%= children %>
</div>
<% end %>
</div>