Syntax
<html>
<head>
<title> {{ title }} </title>
</head>
<body>
<ul>
{% for user in users %}
<li> {{ user.name}} </li>
{% endfor %}
</ul>
</body>
</html>Last updated
<html>
<head>
<title> {{ title }} </title>
</head>
<body>
<ul>
{% for user in users %}
<li> {{ user.name}} </li>
{% endfor %}
</ul>
</body>
</html>Last updated