2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-23 09:35:30 +00:00
Files
InvenTree/InvenTree/templates/yesnolabel.html
T
2021-10-28 17:41:40 +11:00

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