mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-07 21:55:20 +08:00
18 lines
690 B
Text
18 lines
690 B
Text
|
|
<div class="pseudo-attachment-container" style="order: <%= assets_count - i %>">
|
|
<%= link_to download_asset_path(asset),
|
|
class: 'file-preview-link',
|
|
id: "modal_link#{asset.id}",
|
|
data: { no_turbolink: true,
|
|
id: true,
|
|
'preview-url': asset_file_preview_path(asset),
|
|
'order-atoz': order_atoz,
|
|
'order-ztoa': order_ztoa,
|
|
'order-old': i,
|
|
'order-new': assets_count - i,
|
|
} do %>
|
|
|
|
<%= render partial: 'steps/attachments/placeholder.html.erb',
|
|
locals: { edit_page: false, asset: asset } %>
|
|
<% end %>
|
|
</div>
|