mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
50 lines
2.1 KiB
Text
50 lines
2.1 KiB
Text
<% assets = ordered_assets step %>
|
|
<div class="col-xs-12">
|
|
<hr>
|
|
</div>
|
|
<div class="col-xs-12 attachments-actions">
|
|
|
|
<div class="title">
|
|
<h4>
|
|
<%= t('protocols.steps.files', count: assets.count) %>
|
|
</h4>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="attachemnts-header pull-right">
|
|
<% if MarvinJsAsset.enabled? && (can_manage_protocol_in_module?(step.protocol) || can_manage_protocol_in_repository?(step.protocol)) %>
|
|
<%= render partial: '/assets/marvinjs/create_marvin_sketch_button.html.erb',
|
|
locals: { element_id: step.id, element_type: 'Step', sketch_container: ".attacments#att-#{step.id}" } %>
|
|
<% end %>
|
|
<%= render partial: '/assets/wopi/create_wopi_file_button.html.erb',
|
|
locals: { element_id: step.id, element_type: 'Step' } %>
|
|
<div class="dropdown attachments-order" id="dd-att-step-<%= step.id %>">
|
|
<button class="btn btn-default dropdown-toggle" type="button" id="sortMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
|
|
<span id="dd-att-step-<%= step.id %>-label"><%= t('protocols.steps.attachments.sort_new').html_safe %></span>
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" aria-labelledby="sortMenu">
|
|
<% ['new', 'old', 'atoz', 'ztoa'].each do |sort| %>
|
|
<li>
|
|
<a data-order="<%= sort %>" onClick="reorderAttachments('<%= step.id %>', '<%= sort %>')">
|
|
<%= t('protocols.steps.attachments.sort_' + sort ).html_safe %></a>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-xs-12 attacments" id="att-<%= step.id %>">
|
|
<% assets.each_with_index do |asset, i| %>
|
|
<% if asset.class.name == 'Asset' %>
|
|
<%= render partial: 'steps/attachments/item.html.erb',
|
|
locals: { asset: asset, i: i, assets_count: assets.count, step: step } %>
|
|
<% elsif asset.class.name == 'MarvinJsAsset' %>
|
|
<%= render partial: 'assets/marvinjs/marvin_sketch_card.html.erb',
|
|
locals: { sketch: asset, i:i, assets_count: assets.count, step: step} %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<hr>
|