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.

25 lines
722 B
HTML

{% import "macros.htm" as macros %}
<!DOCTYPE html>
<html>
{% set title = "Statistics" %}
<head>
<meta charset="utf-8"/>
<title>{{ title }}</title>
{{ macros.shared_style() }}
</head>
<body>
<h1>{{ title }}</h1>
<ul>
{% set cats = (
("Known", stats.media.known, stats.media.known_seconds),
("Watched", stats.media.watched, stats.media.watched_seconds),
) %}
{% for c in cats %}
<li>
{{ c[0] }} videos: {{ c[1] }} ({{ c[2] | timedelta }}) (Average: {{ (c[2] / c[1]) | timedelta }})
</li>
{% endfor %}
</ul>
</body>
</html>