21 lines
528 B
HTML
21 lines
528 B
HTML
|
<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>
|