templates/media_list: Order title at end of table

master
Felix Stupp 3 years ago
parent 03f2848283
commit 8ad896b75a
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -18,16 +18,15 @@
</ul> </ul>
<table> <table>
<tr> <tr>
<th>Title</th>
<th>Date</th> <th>Date</th>
<th>Progress</th> <th>Progress</th>
<th>Length</th> <th>Length</th>
<th>Consider</th> <th>Consider</th>
<th>Actions</th> <th>Actions</th>
<th>Title</th>
</tr> </tr>
{% for media in media_list %} {% for media in media_list %}
<tr> <tr>
<td><a href="{{ media.info_link }}">{{ media.title }}</a></td>
<td>{{ media.release_date.strftime("%d.%m.%Y") }}</td> <td>{{ media.release_date.strftime("%d.%m.%Y") }}</td>
<td> <td>
{% if media.watched %} {% if media.watched %}
@ -43,6 +42,7 @@
<td> <td>
{{ macros.media_element_buttons(media) }} {{ macros.media_element_buttons(media) }}
</td> </td>
<td><a href="{{ media.info_link }}">{{ media.title }}</a></td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

Loading…
Cancel
Save