This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
negromate_origins/web/negromateweb/templates/todo.html

22 lines
488 B
HTML
Raw Normal View History

2019-12-07 12:24:28 +01:00
{% extends "base.html" %}
{% block content %}
<table>
<thead>
<tr>
<th>Canción</th>
<th>Video</th>
<th>Subtitulos</th>
</tr>
</thead>
<tbody>
{% for song in pending_songs %}
<tr>
<td>{{ song.name }}</td>
<td>{{ song.video|display_boolean }}</td>
<td>{{ song.has_subtitles|display_boolean }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}