Python-100-Days/Day41-55/code/hellodjango/templates/demo/subject.html

18 lines
346 B
HTML
Raw Normal View History

2018-07-04 16:47:48 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>学科信息</title>
</head>
<body>
<h1>学科信息</h1>
<hr>
<ul>
{% for subject in subjects_list %}
<li>
<a href="/subjects/{{ subject.no }}">{{ subject.name }}</a>
</li>
{% endfor %}
</ul>
</body>
</html>