True / False
How to use it
Conditional usage
Displaying a label conditionally
<p>The event is {% if true_false.value %}open{% else %}closed{%endif %}.</p>Adding a class conditionally
<p class="{% if true_false.value %}event-open{% else %}event-closed{%endif %}">
Event status</p>Displaying check icon
Last updated