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.
22 lines
583 B
HTML
22 lines
583 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>
|
|
<li>
|
|
Known videos: {{ stats.media.known }} ({{ stats.media.known_seconds | timedelta }})
|
|
</li>
|
|
<li>
|
|
Watched videos: {{ stats.media.watched }} ({{ stats.media.watched_seconds | timedelta }})
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|