diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b93395..cc33071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Unreleased + +* List number of sessions when filtering on session list + ## 0.2.0 / 2023-01-09 22:42+01:00 * Show playtime total on session list (https://git.kucharczyk.xyz/lukas/timetracker/issues/6) diff --git a/src/web/tracker/templates/list_sessions.html b/src/web/tracker/templates/list_sessions.html index 3e32aad..a9b5dfd 100644 --- a/src/web/tracker/templates/list_sessions.html +++ b/src/web/tracker/templates/list_sessions.html @@ -5,7 +5,8 @@ {% block content %} {% if purchase %}
-

Listing sessions only for purchase "{{ purchase }}" (total playtime: {{ total_duration }})

+

Listing sessions only for purchase "{{ purchase }}"

+

Total playtime: {{ total_duration }} over {{ dataset.count }} sessions.

View all sessions
{% endif %}