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
1.2 KiB
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>
{{ macros.body_header() }}
<h1>{{ title }}</h1>
{% if show_filters | default(False) %}
<form class="form-single-button" method="get" action="{{ this_url() }}">
<label>
<span>Min Length:</span>
<input type="number" name="min_length" min="0" size="4" value="{{ min_length or '' }}"/>
<span>min</span>
</label>
<label>
<span>Max Length:</span>
<input type="number" name="max_length" min="0" size="4" value="{{ max_length or '' }}"/>
<span>min</span>
</label>
<button type="submit">Filter</button>
</form>
{% endif %}
{{ macros.media_thumbnail_list(
elements=media_list,
check_considered=check_considered|default(True),
) }}
</body>
</html>