19 lines
451 B
HTML
Executable File
19 lines
451 B
HTML
Executable File
<html>
|
|
<head>
|
|
<title>{{ item.title }}</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1><a href="..">Episodes</a></h1>
|
|
<ol>
|
|
{% for title, prop in episodes.items() %}
|
|
<li>
|
|
{{ title }} -
|
|
<a href="{{ prop['upload'] }}">Upload</a> -
|
|
<a href="{{ prop['manage'] }}">Manage</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
</body>
|
|
</html> |