prettier-plugin-askama-temp.../test/cases/statement_multiple/input.html
2022-11-18 20:05:06 +01:00

14 lines
No EOL
269 B
HTML

<div>
{% for row in database %}
<ul>
{% for element in row %}
<li>
{%if element.active%}
{{ element.description }}
{% endif%}
</li>
{% endfor%}</ul>{%endfor %}
{% for row in res %}
<p>{{row[0]}}</p><p>{{row[1]}}</p><p>{{row[2]}}</p><p>{{row[3]}}</p>
{% endfor %}
</div>