mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
58 lines
2.3 KiB
Text
58 lines
2.3 KiB
Text
<% if current_team %>
|
|
<% provide(:sidebar_title, t('sidebar.templates.sidebar_title')) %>
|
|
<% provide(:container_class, "no-second-nav-container") %>
|
|
<%= content_for :sidebar do %>
|
|
<%= render partial: "/shared/sidebar/templates_sidebar", locals: {active: :label} %>
|
|
<% end %>
|
|
|
|
<% content_for :head do %>
|
|
<meta name="turbolinks-cache-control" content="no-cache">
|
|
<% end %>
|
|
|
|
<%= stylesheet_link_tag 'datatables' %>
|
|
|
|
|
|
<div class="content-pane flexible label-templates-index">
|
|
<div class="content-header sticky-header">
|
|
<div class="title-row">
|
|
<h1>
|
|
<%= t('label_templates.index.head_title') %>
|
|
</h1>
|
|
</div>
|
|
<div id="content-label-templates-index">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="label-templates-datatable">
|
|
<table id="label-templates-table"
|
|
class="table"
|
|
data-source="<%= datatable_label_templates_path(format: :json) %>">
|
|
<thead>
|
|
<tr>
|
|
<th id="select-all">
|
|
<div class="sci-checkbox-container">
|
|
<input name="select_all" type="checkbox" class="sci-checkbox">
|
|
<span class="sci-checkbox-label"></span>
|
|
</div>
|
|
</th>
|
|
<th id="label-template-selected"><i class="fas fa-thumbtack"></i></th>
|
|
<th id="label-template-name"><%= t('label_templates.index.thead_name') %></th>
|
|
<th id="label-template-format"><%= t('label_templates.index.format') %></th>
|
|
<th id="label-template-description"><%= t('label_templates.index.description') %></th>
|
|
<th id="label-template-updated-by"><%= t('label_templates.index.updated_by') %></th>
|
|
<th id="label-template-updated-at"><%= t('label_templates.index.updated_at') %></th>
|
|
<th id="label-template-created-by"><%= t('label_templates.index.created_by') %></th>
|
|
<th id="label-template-created-at"><%= t('label_templates.index.created_at') %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render partial: "index_toolbar" %>
|
|
<%= render partial: "delete_modal" %>
|
|
<%= javascript_include_tag 'label_templates/label_templates_datatable' %>
|
|
<% end %>
|