timetracker/src/web/tracker/templates/index.html

13 lines
433 B
HTML
Raw Normal View History

2023-01-04 16:22:36 +00:00
{% extends 'base.html' %}
{% block title %}{{ title }}{% endblock title %}
{% block content %}
<div class="text-slate-300 mx-auto max-w-screen-lg text-center">
{% if session_count > 0 %}
2023-01-05 10:24:07 +00:00
You have played a total of {{ session_count }} sessions for a total of {{ total_duration }}.
2023-01-04 16:22:36 +00:00
{% else %}
Start by clicking the links at the top. To track playtime, you need to have at least 1 owned game.
{% endif %}
</div>
{% endblock content %}