mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-02 21:51:51 +08:00
7db53fad7c
Add rich text editor to task and protocol description [SCI-3062][SCI-3071]
75 lines
2.6 KiB
Text
75 lines
2.6 KiB
Text
<% provide(:head_title, t("my_modules.protocols.head_title", project: h(@project.name), module: h(@my_module.name)).html_safe) %>
|
|
|
|
<%= render partial: 'shared/drag_n_drop_overlay' %>
|
|
<%= render partial: "shared/sidebar", locals: { current_task: @my_module, page: 'task' } %>
|
|
<%= render partial: "shared/secondary_navigation", locals: {
|
|
editable: {
|
|
name: 'title',
|
|
active: true,
|
|
width: 'calc(100% - 580px)',
|
|
params_group: 'my_module',
|
|
field_to_udpate: 'name',
|
|
path_to_update: my_module_path(@my_module)
|
|
}
|
|
} %>
|
|
|
|
<div class="content-pane my-modules-protocols-index">
|
|
<%= render partial: "module_header" %>
|
|
|
|
<h2>
|
|
<%= t('Protocol') %>
|
|
</h2>
|
|
|
|
<div>
|
|
<div data-role="protocol-status-bar" style="display: inline;">
|
|
<%= render partial: "my_modules/protocols/protocol_status_bar.html.erb" %>
|
|
</div>
|
|
<%= render partial: "my_modules/protocols/protocol_buttons.html.erb" %>
|
|
<%= render partial: "my_modules/state_buttons.html.erb" %>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="protocol-description-content">
|
|
<% if can_manage_module?(@my_module) %>
|
|
<%= render partial: "my_modules/protocols/protocol_description_form" %>
|
|
<% elsif @my_module.protocol.description.present? %>
|
|
<%= sanitize_input(@my_module.protocol.description) %>
|
|
<% else %>
|
|
<%= t('my_modules.protocols.protocol_status_bar.no_description') %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div data-role="steps-container">
|
|
<%= render partial: "protocols/steps.html.erb" %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- URL for status bar refreshing -->
|
|
<div class="hidden" data-role="protocol-status-bar-url" data-url="<%= protocol_status_bar_protocol_path(@protocol) %>"></div>
|
|
|
|
<!-- Edit description modal -->
|
|
<%= render partial: "my_modules/modals/manage_description_modal" %>
|
|
|
|
<!-- Edit due date modal -->
|
|
<%= render partial: "my_modules/modals/manage_due_date_modal" %>
|
|
|
|
<!-- Confirm link update modal -->
|
|
<%= render partial: "my_modules/protocols/confirm_link_update_modal.html.erb" %>
|
|
|
|
<!-- Load from repository modal -->
|
|
<%= render partial: "my_modules/protocols/load_from_repository_modal.html.erb" %>
|
|
|
|
<!-- Copy to repository protocol modal -->
|
|
<%= render partial: "my_modules/protocols/copy_to_repository_modal.html.erb" %>
|
|
|
|
<!-- Import protocol elements -->
|
|
<%= render partial: "protocols/import_export/import_elements.html.erb" %>
|
|
|
|
<!-- Complete task modal -->
|
|
<%= render partial: 'my_modules/complete_task_modal.html.erb' %>
|
|
|
|
<%= stylesheet_link_tag 'datatables' %>
|
|
<%= javascript_include_tag("my_modules/protocols") %>
|