mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
22 lines
917 B
Text
22 lines
917 B
Text
<span class="due-date-label <%= get_task_alert_color(my_module) %>">
|
|
<% if my_module.archived? && my_module.due_date %>
|
|
<%= l(my_module.due_date, format: :full) %>
|
|
<% elsif my_module.completed? %>
|
|
<%= t('my_modules.states.completed') %>
|
|
<%= l(my_module.completed_on, 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>
|