{% extends "base.html" %} {% from 'utils.html' import make_tabs %} {% macro series_list() %} {% for show in series|sort(attribute='sortTitle') %}
{{show.title}} ({{show.year}}) {% for genre in show.genres %} {{genre}} {% endfor %} {{show.status|title}}
{% endfor %} {% endmacro %} {% block app_content %}

Sonarr v{{status.version}} ({{series|count}} Shows)

{{series_list()}}
{% endblock %}