Upload app

This commit is contained in:
2022-03-05 21:08:02 +00:00
parent c8a2c5d59e
commit 2455bc5e93
13 changed files with 507 additions and 90 deletions

19
src/templates/season.html Executable file
View File

@@ -0,0 +1,19 @@
<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>