mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-13 12:47:11 +08:00
9 lines
361 B
Text
9 lines
361 B
Text
|
<div class="row-reminders-title"><strong><%= t('repository_row.reminder.low_stock_title') %></strong></div>
|
||
|
<div class="row-reminders-body">
|
||
|
<% if reminder.value.amount <= 0 %>
|
||
|
<%= t('repository_row.reminder.stock_empty') %>
|
||
|
<% else %>
|
||
|
<%= t('repository_row.reminder.stock_low_html', stock_formated: reminder.value.formatted ) %>
|
||
|
<% end %>
|
||
|
</div>
|