2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 21:38:48 +00:00
InvenTree/InvenTree/templates/yesnolabel.html
2022-05-20 13:35:07 +02:00

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 %}