This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
plex-subtitle-uploader/src/templates/season.html
2022-03-05 21:08:02 +00:00

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>