15 lines
338 B
HTML
15 lines
338 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
|
|
"http://www.w3.org/TR/html4/frameset.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Review pages</title>
|
|
</head>
|
|
<body>
|
|
<h1>Review items</h1>
|
|
<ul>
|
|
{% for item in info %}
|
|
<li><a href="/review/{{ item.num }}/">{{ item.old }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |