scinote-web/app/views/shared/_asset_link.html.erb

16 lines
560 B
Text
Raw Normal View History

2019-06-28 14:17:09 +08:00
<%= link_to download_asset_path(asset),
class: 'file-preview-link',
id: "modal_link#{asset.id}",
data: { no_turbolink: true, id: true, status: 'asset-present', 'preview-url': asset_file_preview_path(asset) } do %>
<% if display_image_tag && asset.previewable? %>
2019-06-28 14:17:09 +08:00
<%= image_tag asset.medium_preview %>
<p>
<%= truncate(asset.file_name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
2019-06-28 14:17:09 +08:00
</p>
<% else %>
<span>
<%= truncate(asset.file_name, length: Constants::FILENAME_TRUNCATION_LENGTH) %>
</span>
2018-03-30 17:50:28 +08:00
<% end %>
<% end %>