mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
22 lines
876 B
Text
22 lines
876 B
Text
<span class="due-date-label <%= get_task_alert_color(my_module) %>">
|
|
<% if my_module.archived? %>
|
|
<%= 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) %>
|
|
<% else %>
|
|
<span class="empty-label">
|
|
<%= t('my_modules.details.no_due_date_placeholder') %>
|
|
</span>
|
|
<% end %>
|
|
</span>
|