mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
36 lines
2.2 KiB
Text
36 lines
2.2 KiB
Text
<template id="labelTemplatesToolbar">
|
|
<% if can_manage_label_templates?(current_team) %>
|
|
<button data-url="<%= label_templates_path %>" title="<%= t('label_templates.index.toolbar.new') %>"
|
|
class="btn btn-primary auto-shrink-button" id="newLabelTemplate">
|
|
<i class="fas fa-plus"></i>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.new') %></span>
|
|
</button>
|
|
<button title="<%= t('label_templates.index.toolbar.check_for_updates') %>"
|
|
class="btn btn-light auto-shrink-button nonselected-actions" id="syncFluicsTemplates" data-url="<%= sync_fluics_templates_label_templates_path %>">
|
|
<%= image_tag 'label_template_icons/fluics_update.svg' %>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.check_for_updates') %></span>
|
|
</button>
|
|
<div class="btn btn-light hidden selected-actions auto-shrink-button"
|
|
title="<%= t('label_templates.index.toolbar.duplicate') %>"
|
|
data-url="<%= duplicate_label_templates_path %>"
|
|
id="duplicateLabelTemplate">
|
|
<i class="fas fa-clone"></i>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.duplicate') %></span>
|
|
</div>
|
|
<div class="btn btn-light hidden selected-actions auto-shrink-button" id="setZplDefaultLabelTemplate" title="<%= t('label_templates.index.toolbar.set_zpl_default') %>">
|
|
<i class="fas fa-thumbtack"></i>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.set_zpl_default') %></span>
|
|
</div>
|
|
<div class="btn btn-light hidden selected-actions auto-shrink-button" id="setFluicsDefaultLabelTemplate" title="<%= t('label_templates.index.toolbar.set_fluics_default') %>">
|
|
<i class="fas fa-thumbtack"></i>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.set_fluics_default') %></span>
|
|
</div>
|
|
<div class="btn btn-light hidden selected-actions auto-shrink-button" id="deleteLabelTemplate" title="<%= t('label_templates.index.toolbar.delete') %>">
|
|
<i class="fas fa-trash"></i>
|
|
<span class="button-text"><%= t('label_templates.index.toolbar.delete') %></span>
|
|
</div>
|
|
<div class="fluics-warning hidden">
|
|
<%= t('label_templates.index.toolbar.fluics_warning') %>
|
|
</div>
|
|
<% end%>
|
|
</template>
|