50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
{% extends "layout.html" %}
|
|
{% block title %} - My seeded torrents{% endblock %}
|
|
{% block body %}
|
|
<table class="table is-bordered is-striped is-narrow is-fullwidth is-hoverable is-size-7">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Link</th>
|
|
<th>Season</th>
|
|
<th>Tools</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
{% for title in titles.values() %}
|
|
{% for link in title %}
|
|
<tr>
|
|
{% if not loop.index0 %}
|
|
<td rowspan="{{ title|length }}">
|
|
{{ link.title.name }}
|
|
</td>
|
|
{% endif %}
|
|
|
|
{% set instance = connector.get_instance(link.link, '') %}
|
|
<td class="{{ instance.color }}">
|
|
{{ flags.FR.value if link.vf else flags.JP.value }}
|
|
<a href="{{ link.link }}" target="_blank">
|
|
{{ link.link|shorten }}
|
|
</a>
|
|
</td>
|
|
|
|
<td>
|
|
{{ link.season }}
|
|
</td>
|
|
|
|
{% if not loop.index0 %}
|
|
<td rowspan="{{ title|length }}">
|
|
<a href="{{ url_for('search', q=link.title.keyword) }}" target="_blank">
|
|
<i class="fa fa-search"></i>
|
|
</a>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|