mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-11 17:36:13 +08:00
15 lines
720 B
Text
15 lines
720 B
Text
<%= link_to download_asset_path(asset),
|
|
class: 'file-preview-link',
|
|
id: "modal_link#{asset.id}",
|
|
style: "order: #{ assets_count - i }",
|
|
data: { no_turbolink: true, id: true, status: 'asset-present',
|
|
'preview-url': asset_file_preview_path(asset),
|
|
'order-atoz': az_ordered_assets_index(step, asset.id),
|
|
'order-ztoa': assets_count - az_ordered_assets_index(step, asset.id),
|
|
'order-old': i,
|
|
'order-new': assets_count - i,
|
|
} do %>
|
|
|
|
<%= render partial: 'steps/attachments/placeholder.html.erb',
|
|
locals: { edit_page: false, asset: asset } %>
|
|
<% end %>
|