babashka/test-resources/lib_tests/templates/nested-for.html
2021-05-06 12:53:59 +02:00

13 lines
No EOL
138 B
HTML

<html>
<body>
<ul>
{% for user in users %}
<li>
{% for i in user %}
{{i.name}}
{% endfor %}
</li>
{% endfor %}
</ul>
</body>
</html>