12 lines
170 B
HTML
12 lines
170 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
{% for x in fruits %}
|
|
<h1>{{ x }}</h1>
|
|
{% endfor %}
|
|
|
|
<p>In views.py you can see what the fruits variable looks like.</p>
|
|
|
|
</body>
|
|
</html> |