Files
yt-mls/templates/updater.html
Maximilian Wagner ea79c36e49 Milestone v1.0
All core functionality working as intended
2023-08-02 20:56:47 +02:00

35 lines
1.4 KiB
HTML

{%- extends "base.html" %}
{% block content %}
{{ super() }}
<div class="container">
{% if downloads %}
<div class="card" style="width: 100%">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="row">
<div class="col-md-5">
<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>
</div>
</li>
</ul>
</div>
{% endif %}
</div>
{%- endblock %}