mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 21:38:48 +00:00
8 lines
191 B
HTML
8 lines
191 B
HTML
{% load i18n %}
|
|
|
|
{% if value %}
|
|
<span class='badge rounded-pill bg-success'>{% trans 'Yes' %}</span>
|
|
{% else %}
|
|
<span class='badge rounded-pill bg-danger'>{% trans 'No' %}</span>
|
|
{% endif %}
|