2018-08-29 12:56:47 +08:00
|
|
|
<% asset ||= @asset %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% is_image = asset.is_image? %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% timestamp = asset.created_at %>
|
2018-07-09 19:13:44 +08:00
|
|
|
<% icon_class = 'fas ' + (is_image ? 'fa-image' : 'fa-file') %>
|
2017-06-05 18:24:06 +08:00
|
|
|
<div class="report-element report-step-attachment-element report-step-asset-element" data-ts="<%= timestamp.to_i %>" data-type="step_asset" data-id='{ "asset_id": <%= asset.id %> }' data-scroll-id="<%= asset.id %>" data-name="<%=t "projects.reports.elements.step_asset.sidebar_name", file: asset.file_file_name %>" data-icon-class="<%= icon_class %>">
|
2016-02-12 23:52:43 +08:00
|
|
|
<div class="report-element-header">
|
|
|
|
<div class="row">
|
|
|
|
<div class="pull-left attachment-icon">
|
2018-07-09 19:13:44 +08:00
|
|
|
<span class="<%= icon_class %>"></span>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
<div class="pull-left file-name">
|
2018-09-18 11:40:43 +08:00
|
|
|
<% if defined? export_all and export_all %>
|
2018-08-29 12:56:47 +08:00
|
|
|
<a href="<%= path %>">
|
|
|
|
<em><%=t 'projects.reports.elements.step_asset.file_name',
|
2018-09-07 06:01:56 +08:00
|
|
|
file: filename %></em>
|
2018-08-29 12:56:47 +08:00
|
|
|
</a>
|
|
|
|
<% else %>
|
|
|
|
<em><%=t 'projects.reports.elements.step_asset.file_name',
|
|
|
|
file: truncate(asset.file_file_name,
|
|
|
|
length: Constants::FILENAME_TRUNCATION_LENGTH) %></em>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
<div class="pull-left user-time">
|
2016-08-17 15:28:35 +08:00
|
|
|
<%=t 'projects.reports.elements.step_asset.user_time', timestamp: l(timestamp, format: :full) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
<div class="pull-right controls">
|
2016-08-17 15:28:35 +08:00
|
|
|
<%= render partial: 'reports/elements/element_controls.html.erb' %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="report-element-body">
|
|
|
|
<% if is_image %>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12 file-image">
|
2019-01-10 21:16:09 +08:00
|
|
|
<% if defined?(export_all) && export_all %>
|
|
|
|
<img class="report-export-img" src="<%= path %>">
|
|
|
|
<% else %>
|
|
|
|
<%= report_image_asset_url(asset) %>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="report-element-children">
|
|
|
|
<%= children if (defined? children and children.present?) %>
|
|
|
|
</div>
|
|
|
|
</div>
|