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">
<tr>
<th>Date</th>
<th>Count</th>
<th>Watched</th>
<th>Ignored</th>
<th>To Watch</th>
<th>Thumbnail</th>
<th>Title</th>
<th>Tags</th>
</tr>
{% for collection in collection_list %}
{% set stats = collection.stats %}
<tr>
<td>
{% if collection.release_date %}
@ -31,10 +26,6 @@
unknown
{% endif %}
</td>
<td>{{ stats.full_count }}</td>
<td>{{ stats.watched_count }}</td>
<td>{{ stats.ignored_count }}</td>
<td>{{ stats.to_watch_count }}</td>
<td>
{% 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" />

Loading…
Cancel
Save