mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
33bb79d17a
Co-authored-by: Sboursen <dev.sboursen@gmail.com>
15 lines
444 B
Text
15 lines
444 B
Text
<% status = my_module.my_module_status %>
|
|
<%= t('my_module_statuses.dropdown.status_label') %>
|
|
|
|
<button class="btn btn-secondary disabled"
|
|
type="button">
|
|
<span>
|
|
<% if my_module.status_changing %>
|
|
<i class="fas fa-spinner fa-spin"></i>
|
|
<span><%= t('my_module_statuses.dropdown.status_transitioning_label') %></span>
|
|
<% end %>
|
|
<%= status.name %>
|
|
</span>
|
|
<span class="sn-icon sn-icon-down"></span>
|
|
</button>
|
|
|