{# evaluates to true if the foo variable is iterable #}
{% if users is iterable %}
  {% for user in users %}
    Hello {{ user }}!
  {% endfor %}
{% else %}
  {# users is probably a string #}
  Hello {{ users }}!
{% endif %}

Was this helpful?

Copyright © 2024 Blutui.