Files
yt-mls/templates/updater.html
2023-08-03 09:32:27 +02:00

33 lines
1.3 KiB
HTML

{%- extends "base.html" %}
{% block content %}
{{ super() }}
<div class="container" style="width: fit-content(105%)">
{% if downloads %}
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="row">
<table id="videos" class="table">
<thead>
<tr>
<th scope="col" class="text-center">Title</th>
<th scope="col" class="text-center">Update</th>
</tr>
</thead>
<tbody>
{% for d in downloads %}
<tr>
<td class="text-center">{{ d[0] }}</td>
<td class="text-center"><a href="/update/{{ d[1] }}">Start</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</li>
</ul>
</div>
{% endif %}
</div>
{%- endblock %}