{% import "macros.htm" as macros %} {% set title = collection_list | length | string + " Collections known" %} {{ title }} {{ macros.shared_style() }}

{{ title }}

{% for collection in collection_list %} {% set stats = collection.stats %} {% endfor %}
Date Count Watched Ignored To Watch Id Title Tags
{% if collection.release_date %} {{ collection.release_date.strftime("%d.%m.%Y") }} {% else %} unknown {% endif %} {{ stats.full_count }} {{ stats.watched_count }} {{ stats.ignored_count }} {{ stats.to_watch_count }} {{ collection.id }} {{ collection.title }} {{ collection.assigned_tags | map(attribute="title") | sort | join(" | ") }}