From ff28600710082530840a15397c84b5da61e87ed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Wed, 27 Mar 2024 14:38:00 +0100 Subject: [PATCH] Fix timestamp minutes on game page Fixed #72 --- games/templates/view_game.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/templates/view_game.html b/games/templates/view_game.html index ca0cbde..fa66001 100644 --- a/games/templates/view_game.html +++ b/games/templates/view_game.html @@ -75,7 +75,7 @@ {% for session in sessions %} {% partialdef session-info inline=True %}
  • - {{ session.timestamp_start | date:"d/m/Y H:m" }}{% if session.timestamp_end %}-{{ session.timestamp_end | date:"H:m" }}{% endif %} + {{ session.timestamp_start | date:"d/m/Y H:i" }}{% if session.timestamp_end %}-{{ session.timestamp_end | date:"H:i" }}{% endif %} ({{ session.device.get_type_display | default:"Unknown" }}, {{ session.duration_formatted }}) {% url 'edit_session' session.id as edit_url %} {% include 'components/edit_button.html' with edit_url=edit_url %}