scinote-web/app/views/reports/elements/_step_table_element.html.erb

25 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<% if table.blank? and @table.present? then table = @table end %>
2016-07-21 19:11:15 +08:00
<% timestamp = table.created_at %>
2016-02-12 23:52:43 +08:00
<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) %>
2016-02-12 23:52:43 +08:00
</div>
<div class="pull-right controls">
<%= render partial: 'reports/elements/element_controls.html.erb' %>
2016-02-12 23:52:43 +08:00
</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>