mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
9 lines
297 B
Text
9 lines
297 B
Text
|
<%= t('my_modules.states.state_label') %>
|
||
|
<% if my_module.completed? %>
|
||
|
<strong class="alert-green">
|
||
|
<%= t('my_modules.states.completed_on', date: l(my_module.completed_on, format: :full_date)) %>
|
||
|
</strong>
|
||
|
<% else %>
|
||
|
<strong><%= t('my_modules.states.in_progress') %></strong>
|
||
|
<% end %>
|