From 51b6b02b24159c07cb487b5cf8c479c02e558e8d Mon Sep 17 00:00:00 2001 From: EiSiMo Date: Tue, 21 Apr 2026 13:33:55 +0200 Subject: [PATCH] =?UTF-8?q?wohnungen:=20preserve=20map=20across=20HTMX=20p?= =?UTF-8?q?olls,=20add=20rejected=20section,=20drop=20=E2=82=AC/m=C2=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - #flats-map uses hx-preserve; marker data moved to
@@ -124,7 +125,6 @@ {% if f.rooms %}{{ "%.1f"|format(f.rooms) }} Z{% endif %} {% if f.size %} · {{ "%.0f"|format(f.size) }} m²{% endif %} {% if f.total_rent %} · {{ "%.0f"|format(f.total_rent) }} €{% endif %} - {% if f.sqm_price %} ({{ "%.2f"|format(f.sqm_price) }} €/m²){% endif %} {% if f.connectivity_morning_time %} · {{ "%.0f"|format(f.connectivity_morning_time) }} min morgens{% endif %} {% if f.wbs %} · WBS: {{ f.wbs }}{% endif %} · entdeckt @@ -170,4 +170,38 @@
+{% if rejected_flats %} +
+
+ + Abgelehnte Wohnungen + {{ rejected_flats|length }} + +
+ {% for f in rejected_flats %} +
+
+ + {{ f.address or f.link }} + +
+ {% if f.rooms %}{{ "%.1f"|format(f.rooms) }} Z{% endif %} + {% if f.size %} · {{ "%.0f"|format(f.size) }} m²{% endif %} + {% if f.total_rent %} · {{ "%.0f"|format(f.total_rent) }} €{% endif %} + · abgelehnt +
+
+
+ + + +
+
+ {% endfor %} +
+
+
+{% endif %} +