mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-18 02:54:39 +08:00
16 lines
656 B
Text
16 lines
656 B
Text
<div class="task-notes">
|
|
<div class="task-notes-content text-base content__text-container">
|
|
<% if can_update_my_module_description?(@my_module) %>
|
|
<%= render partial: "my_modules/description_form" %>
|
|
<% elsif @my_module.description.present? %>
|
|
<div class="view-text-element">
|
|
<%= custom_auto_link(@my_module.tinymce_render(:description),
|
|
simple_format: false,
|
|
tags: %w(img),
|
|
team: current_team) %>
|
|
</div>
|
|
<% else %>
|
|
<span class="no-description"><%= t('my_modules.notes.no_description') %></span>
|
|
<% end %>
|
|
</div>
|
|
</div>
|