You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% import "macros.htm" as macros %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
{% set title = media_list | length | string + " Videos known" %}
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
{{ macros.shared_style() }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
Full length:
|
|
|
|
{{ media_list | map(attribute='length') | sum }}
|
|
|
|
seconds
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Progress</th>
|
|
|
|
<th>Length</th>
|
|
|
|
<th>Consider</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
<th>Title</th>
|
|
|
|
</tr>
|
|
|
|
{% for media in media_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ media.release_date.strftime("%d.%m.%Y") }}</td>
|
|
|
|
<td>
|
|
|
|
{% if media.watched %}
|
|
|
|
completed
|
|
|
|
{% elif media.progress <= 0 %}
|
|
|
|
not started
|
|
|
|
{% else %}
|
|
|
|
{{ media.progress }} s
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ media.length }} s</td>
|
|
|
|
<td>{{ media.can_considered | tenary("Yes", "no") }}</td>
|
|
|
|
<td>
|
|
|
|
{{ macros.media_element_buttons(media) }}
|
|
|
|
</td>
|
|
|
|
<td><a href="{{ media.info_link }}">{{ media.title }}</a></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|