babashka/test-resources/lib_tests/templates/nested-for.html

13 lines
138 B
HTML
Raw Normal View History

2021-05-06 10:53:59 +00:00
<html>
<body>
<ul>
{% for user in users %}
<li>
{% for i in user %}
{{i.name}}
{% endfor %}
</li>
{% endfor %}
</ul>
</body>
</html>