askama/testing/templates/for-break-continue.html
René Kijewski 726ca1cc33 Add {% break %} and {% continue %}
This PR adds `{% break %}` and `{% continue %}` statements to break out
of a loop, or continue with the next element of the iterator.
2021-08-30 22:54:32 +02:00

12 lines
266 B
HTML

{%- for v in values -%}
x {{- v -}}
{%- if matches!(v, x if *x > 9) -%}
{%- if matches!(v, x if *x % 2 == 0) -%}
{%- break -%}
{%- else -%}
{%- continue -%}
{%- endif -%}
{%- endif -%}
y
{%- endfor -%}