stats.htm: Refracted template to remove duplicity

master
Felix Stupp 3 years ago
parent 8ad896b75a
commit 012aad4c86
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -10,12 +10,15 @@
<body> <body>
<h1>{{ title }}</h1> <h1>{{ title }}</h1>
<ul> <ul>
<li> {% set cats = (
Known videos: {{ stats.media.known }} ({{ stats.media.known_seconds | timedelta }}) ("Known", stats.media.known),
</li> ("Watched", stats.media.watched),
<li> ) %}
Watched videos: {{ stats.media.watched }} ({{ stats.media.watched_seconds | timedelta }}) {% for c in cats %}
</li> <li>
{{ c[0] }} videos: {{ c[1] }} ({{ c[2] | timedelta }})
</li>
{% endfor %}
</ul> </ul>
</body> </body>
</html> </html>

Loading…
Cancel
Save