Initial commit

This commit is contained in:
Daniel S. 2021-08-29 15:03:28 +02:00
commit 7523a19d1f
40 changed files with 3984 additions and 0 deletions

View file

View file

@ -0,0 +1,28 @@
{% extends "base.html" %}
{% from 'utils.html' import make_tabs %}
{% macro series_list() %}
{% for show in series|sort(attribute='sortTitle') %}
<h6>
<a href="{{urljoin(config.APP_CONFIG.sonarr_url,'series/'+show.titleSlug)}}">{{show.title}}</a>
({{show.year}})
{% for genre in show.genres %}
<span class="badge badge-secondary">{{genre}}</span>
{% endfor %}
<span class="badge badge-info">{{show.status|title}}</span>
</h6>
{% endfor %}
{% endmacro %}
{% block app_content %}
<h2>
<a href="{{config.APP_CONFIG.sonarr_url}}">Sonarr</a>
v{{status.version}} ({{series|count}} Shows)
</h2>
<div class="row">
<div class="col">
{{series_list()}}
</div>
</div>
{% endblock %}