LORDCHANNEL2.0/templates/film_backup.html

13 lines
312 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
{% for movie in films %}
<a href="{{ movie.get_absolute_url }}">{{ movie.titolo }}</a>
{% endfor %}
</body>
</html>