From 84a37206fdb7bbb2a67be1ae81e4b76a6c6031b7 Mon Sep 17 00:00:00 2001 From: Matthias Nagel Date: Wed, 1 Oct 2025 14:16:02 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20Anzeige=20des=20Gegners=20f=C3=BCr=20Sp?= =?UTF-8?q?iel-Termine=20auf=20dem=20Dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/templates/dashboard/dashboard.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dashboard/templates/dashboard/dashboard.html b/dashboard/templates/dashboard/dashboard.html index 2bccdec..e78447a 100644 --- a/dashboard/templates/dashboard/dashboard.html +++ b/dashboard/templates/dashboard/dashboard.html @@ -28,6 +28,9 @@
{{ item.event.title }}
{{ item.event.start_time|localize }} + {% if item.event.game %} +

Opponent: {{ item.event.game.opponent }}

+ {% endif %}

{{ item.event.description }}

Location: {{ item.event.location_address }} View on Map @@ -82,6 +85,9 @@
{{ item.event.title }}
{{ item.event.start_time|localize }} + {% if item.event.game %} +

Opponent: {{ item.event.game.opponent }}

+ {% endif %}

{{ item.event.description }}

Location: {{ item.event.location_address }} View on Map