Do not show collection statistics in collection table

Too ineffiecient for using on (nearly) all collections the same time
master
Felix Stupp 2 years ago
parent 269bdc140c
commit 18a2294cc8
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -13,16 +13,11 @@
<table class="collection_table_list"> <table class="collection_table_list">
<tr> <tr>
<th>Date</th> <th>Date</th>
<th>Count</th>
<th>Watched</th>
<th>Ignored</th>
<th>To Watch</th>
<th>Thumbnail</th> <th>Thumbnail</th>
<th>Title</th> <th>Title</th>
<th>Tags</th> <th>Tags</th>
</tr> </tr>
{% for collection in collection_list %} {% for collection in collection_list %}
{% set stats = collection.stats %}
<tr> <tr>
<td> <td>
{% if collection.release_date %} {% if collection.release_date %}
@ -31,10 +26,6 @@
unknown unknown
{% endif %} {% endif %}
</td> </td>
<td>{{ stats.full_count }}</td>
<td>{{ stats.watched_count }}</td>
<td>{{ stats.ignored_count }}</td>
<td>{{ stats.to_watch_count }}</td>
<td> <td>
{% set e = (collection.next_episode or collection.first_episode).element %} {% set e = (collection.next_episode or collection.first_episode).element %}
<img class="thumbnail_img" src="{{ e.info_link }}/thumbnail" alt="Thumbnail for {{ e.title }}" loading="lazy" /> <img class="thumbnail_img" src="{{ e.info_link }}/thumbnail" alt="Thumbnail for {{ e.title }}" loading="lazy" />

Loading…
Cancel
Save