Fix missing values for first and last game in stats view
Django CI/CD / test (push) Successful in 22s
Django CI/CD / build-and-push (push) Successful in 53s

This commit is contained in:
2026-05-12 15:12:43 +02:00
parent 5003b739d3
commit 103c29e234
+2
View File
@@ -196,6 +196,8 @@ def stats_alltime(request: HttpRequest) -> HttpResponse:
first_play_date = "N/A"
last_play_date = "N/A"
first_play_game = None
last_play_game = None
if this_year_sessions:
first_session = this_year_sessions.earliest()
first_play_game = first_session.game