mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
9 lines
290 B
Text
9 lines
290 B
Text
|
<% if my_module.due_date then %>
|
||
|
<%=l my_module.due_date, format: :full_date %>
|
||
|
<% if my_module.is_overdue? or my_module.is_one_day_prior? %>
|
||
|
<span class="glyphicon glyphicon-alert"></span>
|
||
|
<% end %>
|
||
|
<% else %>
|
||
|
<em><%=t "projects.canvas.full_zoom.no_due_date" %></em>
|
||
|
<% end %>
|