Initial commit
This commit is contained in:
commit
7523a19d1f
40 changed files with 3984 additions and 0 deletions
28
templates/sonarr/index.html
Normal file
28
templates/sonarr/index.html
Normal 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue