File size: 430 Bytes
a20d046 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html>
<head>
<title>Risultati della Ricerca</title>
</head>
<body>
<h1>Risultati per "{{ query }}"</h1>
<ul>
{% for result in results %}
<li>
<a href="/video/{{ loop.index }}?query={{ query }}">
{{ result.value }} - {{ result.category }} - {{ result.grade }}
</a>
</li>
{% endfor %}
</ul>
</body>
</html>
|