flask-server/kinolist/templates/_movies.html

21 lines
528 B
HTML
Raw Normal View History

2024-10-08 13:20:00 -04:00
<table class="styled-table{%if manage %} manage{% endif %}">
<thead>
<tr>
{%if manage %}<th></th>{% endif %}
<th>Title</th>
<th>Year</th>
<th>Poster</th>
<th>Summary</th>
{%if manage %}<th>Already watched?</th>{% endif %}
{%if manage or watched %}<th>Watch date</th>
<th>Score</th>{% endif %}
{%if manage %}<th></th>{% endif %}
</tr>
</thead>
<tbody id="tbody">
{% for movie in movies %}
{% include "_line.html" %}
{% endfor %}
</tbody>
</table>