mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-21 11:24:40 +02:00
7 lines
178 B
Twig
7 lines
178 B
Twig
|
{% macro boolean(value) %}
|
||
|
{% if value %}
|
||
|
{% trans %}bool.true{% endtrans %}
|
||
|
{% else %}
|
||
|
{% trans %}bool.false{% endtrans %}
|
||
|
{% endif %}
|
||
|
{% endmacro %}
|