From a84a2c98857a550060b8af6534e58fd7b78f44d6 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 17 Jun 2026 22:54:36 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20SVG-Pin-Icon=20f=C3=BCr=20Halle-Badges?= =?UTF-8?q?=20(statt=20=F0=9F=93=8D=20Emoji)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Weiße Pin-SVG auf allen Frontend-Halle-Badges - Detailseite ebenfalls mit Pin-Icon - Konsistent mit restlichen SVG-Icons (BSN-Blau-Thema) --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 3ab04a0..8ce3107 100644 --- a/app.py +++ b/app.py @@ -1813,7 +1813,7 @@ def public_frontend(): # Text-only card: link-wrapped, time overlay inside card-content cards += f"""
- """ + (f'
📍 {r["halle"]}
' if r["halle"] else '') + """ + """ + (f'
{r["halle"]}
' if r["halle"] else '') + """ """ + (f'
🚫 AUSVERKAUFT: {r["spiel_titel"]}
' if r["category"] == "ausverkauft" and r["spiel_titel"] else '') + """
""" + time_block + """ @@ -1833,7 +1833,7 @@ def public_frontend(): # Media card: existing structure cards += f"""
""" + media_first + time_block + """ - """ + (f'
📍 {r["halle"]}
' if r["halle"] else '') + """ + """ + (f'
{r["halle"]}
' if r["halle"] else '') + """ """ + (f'
🚫 AUSVERKAUFT: {r["spiel_titel"]}
' if r["category"] == "ausverkauft" and r["spiel_titel"] else '') + """