scinote-web/app/views/protocols/index.html.erb

57 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-07-19 23:56:42 +08:00
<% content_for :head do %>
<meta name="turbolinks-cache-control" content="no-cache">
<% end %>
2016-07-21 19:11:15 +08:00
<% provide(:head_title, t("protocols.index.head_title")) %>
<% if current_team %>
<% provide(:sidebar_title, t('sidebar.templates.sidebar_title')) %>
<%= content_for :sidebar do %>
<%= render partial: "/shared/sidebar/templates_sidebar", locals: {active: :protocol} %>
<% end %>
2022-12-05 20:32:05 +08:00
<% provide(:container_class, 'no-second-nav-container') %>
2016-07-21 19:11:15 +08:00
<div class="content-pane flexible protocols-index <%= @type %>">
2022-12-05 20:32:05 +08:00
<div class="content-header sticky-header">
<div class="title-row">
<% if templates_view_mode_archived?(type: @type) %>
<h1>
<i class="fas fa-archive"></i>
<%= t('protocols.index.head_title_archived') %>
</h1>
2019-06-12 13:19:14 +08:00
<% else %>
<h1><%= t('protocols.index.head_title') %></h1>
2019-06-12 13:19:14 +08:00
<% end %>
2016-07-21 19:11:15 +08:00
</div>
</div>
2022-12-05 20:32:05 +08:00
<div class="protocols-container">
<%= render partial: "protocols/index/protocols_datatable.html.erb" %>
2016-07-21 19:11:15 +08:00
</div>
</div>
<% end %>
<div id="protocolsio-preview-modal-target"></div>
<%= render partial: "protocols/import_export/import_json_protocol_modal.html.erb" %>
<%= render partial: "protocols/index/general_toolbar.html.erb" %>
<%= render partial: "protocols/index/action_toolbar.html.erb" %>
<%= render partial: "protocols/index/protocol_filters.html.erb" %>
<%= render partial: "protocols/index/delete_draft_modal.html.erb" %>
2016-07-21 19:11:15 +08:00
<%= render partial: "protocols/index/linked_children_modal.html.erb" %>
2016-12-13 17:39:18 +08:00
<%= render partial: "protocols/index/protocol_preview_modal.html.erb" %>
<%= render partial: "protocols/index/protocolsio_modal.html.erb" %>
2023-02-17 21:27:20 +08:00
<%= render partial: "protocols/index/new_protocol_modal.html.erb", locals: {type: 'new'} %>
2016-07-21 19:11:15 +08:00
<%= render partial: "protocols/import_export/import_elements.html.erb" %>
<%= javascript_include_tag "handsontable.full" %>
2016-12-22 18:43:11 +08:00
<!-- Libraries for formulas -->
<%= render partial: "shared/formulas_libraries.html.erb" %>
<%= stylesheet_link_tag 'datatables' %>
<%= javascript_include_tag "assets/wopi/create_wopi_file" %>
<%= javascript_include_tag "protocols/index" %>
2023-02-17 21:27:20 +08:00
<%= javascript_include_tag "protocols/new_protocol" %>
<%= javascript_include_tag 'pdf_js' %>
<%= stylesheet_link_tag 'pdf_js_styles' %>