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

41 lines
861 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>Pendientes</h2>
<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>
<h2>Publicadas</h2>
<table>
<thead>
<tr>
<th>Canción</th>
<th>Karaoke</th>
</tr>
</thead>
<tbody>
{% for song in songs %}
<tr>
<td>{{ song.name }}</td>
<td>{{ song.metadata.karaoke|display_boolean }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}