prettier-plugin-askama-temp.../test/cases/statement_multiple/input.html

14 lines
269 B
HTML
Raw Normal View History

2022-11-18 22:05:06 +03:00
<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>