mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
15 lines
638 B
Text
15 lines
638 B
Text
<% if can_manage_protocol_in_repository?(@protocol) && edit_mode %>
|
|
<%= render partial: "my_modules/protocols/protocol_description_form.html.erb", locals:
|
|
{
|
|
protocol: @protocol,
|
|
update_url: description_protocol_path(@protocol, format: :json)
|
|
}
|
|
%>
|
|
<% elsif @protocol.description.present? %>
|
|
<%= custom_auto_link(@protocol.tinymce_render(:description),
|
|
simple_format: false,
|
|
tags: %w(img),
|
|
team: current_team) %>
|
|
<% else %>
|
|
<span style="font-size: 16px"><%= t('my_modules.protocols.protocol_status_bar.no_description') %></span>
|
|
<% end %>
|