mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
14 lines
555 B
Text
14 lines
555 B
Text
<div class="task-notes">
|
|
<div class="task-notes-content">
|
|
<% if can_update_my_module_description?(@my_module) %>
|
|
<%= render partial: "description_form" %>
|
|
<% elsif @my_module.description.present? %>
|
|
<%= custom_auto_link(@my_module.tinymce_render(:description),
|
|
simple_format: false,
|
|
tags: %w(img),
|
|
team: current_team) %>
|
|
<% else %>
|
|
<span class="no-description"><%= t('my_modules.notes.no_description') %></span>
|
|
<% end %>
|
|
</div>
|
|
</div>
|