You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
449 B

<!DOCTYPE html>
<html lang="en">
<head>
{% load static %}
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>测试!</h1>
{% for movie in movie_list %}
<div class="movie_detail">
<a href="#"></a>
<img src="/static/{{ movie.movieimge }}" alt="">
</div>
<a href="#"><div class="buy_movie buy_hot_movie">{{ movie.moviename }}</div></a>
{% endfor %}
</body>
</html>