mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
19 lines
818 B
Text
19 lines
818 B
Text
<span class="due-date-label <%= get_task_alert_color(my_module) %>">
|
|
<% if (my_module.archived_branch? || my_module.completed? ) && my_module.due_date %>
|
|
<%= l(my_module.due_date, format: :full) %>
|
|
<% elsif my_module.is_one_day_prior? %>
|
|
<%= t('my_modules.states.due_soon') %>
|
|
<%= l(my_module.due_date, format: :full) %>
|
|
<span class="fas fa-exclamation-triangle"></span>
|
|
<% elsif my_module.is_overdue? %>
|
|
<%= t('my_modules.states.overdue') %>
|
|
<%= l(my_module.due_date, format: :full) %>
|
|
<span class="fas fa-exclamation-triangle"></span>
|
|
<% elsif my_module.due_date %>
|
|
<%= l(my_module.due_date, format: :full) %>
|
|
<% elsif due_date_editable %>
|
|
<span class="empty-label">
|
|
<%= t('my_modules.details.no_due_date_placeholder') %>
|
|
</span>
|
|
<% end %>
|
|
</span>
|