mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
24 lines
1.1 KiB
Text
24 lines
1.1 KiB
Text
<% if table.blank? and @table.present? then table = @table end %>
|
|
<% timestamp = table.created_at %>
|
|
<div class="report-element report-step-attachment-element report-step-table-element" data-ts="<%= timestamp.to_i %>" data-type="step_table" data-id="<%= table.id %>" data-name="<%=t "projects.reports.elements.step_table.sidebar_name" %>" data-icon-class="glyphicon-th">
|
|
<div class="report-element-header">
|
|
<div class="row">
|
|
<div class="pull-left attachment-icon">
|
|
<span class="glyphicon glyphicon-th"></span>
|
|
</div>
|
|
<div class="pull-left user-time">
|
|
<%=t 'projects.reports.elements.step_table.user_time', timestamp: l(timestamp, format: :full) %>
|
|
</div>
|
|
<div class="pull-right controls">
|
|
<%= render partial: 'reports/elements/element_controls.html.erb' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="report-element-body">
|
|
<input type="hidden" class="hot-table-contents" value="<%= table.contents_utf_8 %>" />
|
|
<div class="hot-table-container"></div>
|
|
</div>
|
|
<div class="report-element-children">
|
|
<%= children if (defined? children and children.present?) %>
|
|
</div>
|
|
</div>
|