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.

34 lines
1019 B
HTML

{% import "macros.htm" as macros %}
<!DOCTYPE html>
<html>
{% set title = "Last " + media_list | length | string + " Videos to watch" %}
<head>
<meta charset="utf-8"/>
<title>{{ title }}</title>
{{ macros.shared_style() }}
</head>
<body>
<h1>{{ title }}</h1>
<table>
<tr>
<th>Date</th>
<th>To Watch</th>
<th>Actions</th>
<th>Title</th>
</tr>
{% for media in media_list %}
<tr>
<td>{{ media.release_date.strftime("%d.%m.%Y") }}</td>
<td>
{{ media.left_length | timedelta }}
</td>
<td>
{{ macros.media_element_buttons(media) }}
</td>
<td><a href="{{ media.info_link }}">{{ media.title }}</a></td>
</tr>
{% endfor %}
</table>
</body>
</html>