raterus
0
Q:

if else twig

// twig if else
{% if process_1 %}
   {{ process_1 }}
{% elseif process_2 %}
   Only {{ process_2 }} left!
{% else %}
   Sold-out!
{% endif %}
2
{% if online == false %}
    <p>Our website is in maintenance mode. Please, come back later.</p>
{% endif %}
0
{% if users %}
    <ul>
        {% for user in users %}
            <li>{{ user.username|e }}</li>
        {% endfor %}
    </ul>
{% endif %}
0
{% if temperature > 18 and temperature < 27 %}
    <p>It's a nice day for a walk in the park.</p>
{% endif %}
0
{% if online == false %}
    <p>Our website is in maintenance mode. Please, come back later.</p>
{% endif %}
0
{% if product.stock > 10 %}
   Available
{% elseif product.stock > 0 %}
   Only {{ product.stock }} left!
{% else %}
   Sold-out!
{% endif %}
 
0
{% if not user.subscribed %}
    <p>You are not subscribed to our mailing list.</p>
{% endif %}
0
{% if users %}
    <ul>
        {% for user in users %}
            <li>{{ user.username|e }}</li>
        {% endfor %}
    </ul>
{% endif %}
0

New to Communities?

Join the community