* remove the kill-switch: auto-apply toggle is the single on/off; manual
'Bewerben' button now only gated by apply reachability; circuit breaker
stays but only gates auto-apply (manual bypasses, so a user can retry)
* Berlin-timezone date filter (de_dt) formats timestamps as DD.MM.YYYY HH:MM
everywhere; storage stays UTC
* Wohnungen: live 'entdeckt vor X' on every flat + 'nächste Aktualisierung in Xs'
countdown in the header, driven by /static/app.js; HTMX polls body every 30s
* drop the Fehler tab entirely; failed applications now carry a
'Fehler-Report herunterladen (ZIP)' link -> /bewerbungen/{id}/report.zip
bundles application.json, flat.json, profile_snapshot.json, forensics.json,
step_log.txt, page.html, console/errors/network JSONs, and decoded
screenshots/*.jpg for AI-assisted debugging
* trim the 'sensibel' blurb from the Profil tab
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
178 lines
9.3 KiB
HTML
178 lines
9.3 KiB
HTML
{# Renders the full Wohnungen body; used both by the full page and by HTMX poll. #}
|
||
<div id="wohnungen-body" class="space-y-6">
|
||
|
||
<!-- Auto-Bewerben + Status-Leiste -->
|
||
<section class="card p-5 flex flex-col md:flex-row md:items-center gap-4 justify-between">
|
||
<div class="flex flex-col gap-1">
|
||
<div class="text-xs uppercase tracking-wide text-slate-500">Auto-Bewerben</div>
|
||
<div class="flex items-center gap-2">
|
||
{% if auto_apply_enabled %}
|
||
<span class="chip chip-warn">aktiviert</span>
|
||
<span class="text-sm text-slate-600">bei Match wird automatisch beworben</span>
|
||
{% else %}
|
||
<span class="chip chip-info">deaktiviert</span>
|
||
<span class="text-sm text-slate-600">Matches werden nur angezeigt</span>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
|
||
<div class="flex flex-wrap items-center gap-3">
|
||
<form method="post" action="/actions/auto-apply">
|
||
<input type="hidden" name="csrf" value="{{ csrf }}">
|
||
<input type="hidden" name="value" value="{% if auto_apply_enabled %}off{% else %}on{% endif %}">
|
||
<button class="btn btn-hot {% if not auto_apply_enabled %}off{% endif %}"
|
||
onclick="return confirm('{% if auto_apply_enabled %}Auto-Bewerben deaktivieren?{% else %}Auto-Bewerben aktivieren? Das System bewirbt dann automatisch bei jedem Match – bitte Profil und Filter prüfen.{% endif %}');"
|
||
type="submit">
|
||
{% if auto_apply_enabled %}AUTO-BEWERBEN DEAKTIVIEREN{% else %}AUTO-BEWERBEN AKTIVIEREN{% endif %}
|
||
</button>
|
||
</form>
|
||
|
||
{% if circuit_open %}
|
||
<form method="post" action="/actions/reset-circuit">
|
||
<input type="hidden" name="csrf" value="{{ csrf }}">
|
||
<button class="btn btn-ghost text-sm" type="submit">Circuit zurücksetzen</button>
|
||
</form>
|
||
{% endif %}
|
||
</div>
|
||
</section>
|
||
|
||
{% if not apply_allowed %}
|
||
<div class="card p-4">
|
||
<span class="chip chip-bad">apply blockiert</span>
|
||
<span class="ml-2 text-sm text-slate-600">{{ apply_block_reason }}</span>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<!-- Status-Reihe -->
|
||
<section class="grid grid-cols-2 md:grid-cols-4 gap-3">
|
||
<div class="card p-3">
|
||
<div class="text-xs text-slate-500">alert</div>
|
||
<div class="mt-1">
|
||
{% if last_alert_heartbeat %}<span class="chip chip-ok">live</span>
|
||
{% else %}<span class="chip chip-warn">kein Heartbeat</span>{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="card p-3">
|
||
<div class="text-xs text-slate-500">apply</div>
|
||
<div class="mt-1">
|
||
{% if apply_reachable %}<span class="chip chip-ok">ok</span>
|
||
{% else %}<span class="chip chip-bad">down</span>{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="card p-3">
|
||
<div class="text-xs text-slate-500">submit_forms</div>
|
||
<div class="mt-1">
|
||
{% if submit_forms %}<span class="chip chip-warn">echt senden</span>
|
||
{% else %}<span class="chip chip-info">dry-run</span>{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="card p-3">
|
||
<div class="text-xs text-slate-500">Fehler in Serie</div>
|
||
<div class="mt-1">
|
||
{% if circuit_open %}<span class="chip chip-bad">circuit open</span>
|
||
{% elif apply_failures > 0 %}<span class="chip chip-warn">{{ apply_failures }}</span>
|
||
{% else %}<span class="chip chip-ok">0</span>{% endif %}
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Filter Panel -->
|
||
<details class="card" {% if not filters.rooms_min and not filters.max_rent %}open{% endif %}>
|
||
<summary class="px-5 py-3 font-semibold select-none">Eigene Filter</summary>
|
||
<form method="post" action="/actions/filters" class="p-5 grid grid-cols-2 md:grid-cols-3 gap-4">
|
||
<input type="hidden" name="csrf" value="{{ csrf }}">
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">Zimmer min</label>
|
||
<input class="input" name="rooms_min" value="{{ filters.rooms_min if filters.rooms_min is not none else '' }}" placeholder="z.B. 2">
|
||
</div>
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">Zimmer max</label>
|
||
<input class="input" name="rooms_max" value="{{ filters.rooms_max if filters.rooms_max is not none else '' }}" placeholder="z.B. 3">
|
||
</div>
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">max Miete (€)</label>
|
||
<input class="input" name="max_rent" value="{{ filters.max_rent if filters.max_rent is not none else '' }}" placeholder="1500">
|
||
</div>
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">min Größe (m²)</label>
|
||
<input class="input" name="min_size" value="{{ filters.min_size if filters.min_size is not none else '' }}" placeholder="40">
|
||
</div>
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">max Anfahrt morgens (min)</label>
|
||
<input class="input" name="max_morning_commute" value="{{ filters.max_morning_commute if filters.max_morning_commute is not none else '' }}" placeholder="50">
|
||
</div>
|
||
<div>
|
||
<label class="block text-xs uppercase tracking-wide text-slate-500 mb-1">WBS benötigt</label>
|
||
<select class="input" name="wbs_required">
|
||
<option value="" {% if not filters.wbs_required %}selected{% endif %}>egal</option>
|
||
<option value="yes" {% if filters.wbs_required == 'yes' %}selected{% endif %}>ja</option>
|
||
<option value="no" {% if filters.wbs_required == 'no' %}selected{% endif %}>nein</option>
|
||
</select>
|
||
</div>
|
||
<div class="col-span-2 md:col-span-3 flex gap-2 pt-2">
|
||
<button class="btn btn-primary" type="submit">Filter speichern</button>
|
||
<span class="text-xs text-slate-500 self-center">Leer lassen = kein Limit. Filter bestimmen Match-Hervorhebung + Auto-Bewerben.</span>
|
||
</div>
|
||
</form>
|
||
</details>
|
||
|
||
<!-- Liste aller Wohnungen -->
|
||
<section class="card">
|
||
<div class="flex items-center justify-between px-4 py-3 border-b border-soft gap-4 flex-wrap">
|
||
<h2 class="font-semibold">Neueste Wohnungen auf inberlinwohnen.de</h2>
|
||
<div class="text-xs text-slate-500 flex gap-3 items-center">
|
||
<span>{{ flats|length }} gesehen</span>
|
||
{% if next_scrape_utc %}
|
||
<span>· nächste Aktualisierung <span data-countdown-utc="{{ next_scrape_utc }}">…</span></span>
|
||
{% else %}
|
||
<span>· warte auf alert…</span>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
<div class="divide-y divide-soft">
|
||
{% for item in flats %}
|
||
{% set f = item.row %}
|
||
<div class="px-4 py-3 flex flex-col md:flex-row md:items-center gap-3 {% if item.matched %}bg-[#f2f8ff]{% endif %}">
|
||
<div class="flex-1 min-w-0">
|
||
<div class="flex items-center gap-2 flex-wrap">
|
||
<a class="font-medium truncate" href="{{ f.link }}" target="_blank" rel="noopener noreferrer">
|
||
{{ f.address or f.link }}
|
||
</a>
|
||
{% if item.matched %}<span class="chip chip-ok">match</span>{% endif %}
|
||
{% if item.last and item.last.success == 1 %}<span class="chip chip-ok">beworben</span>
|
||
{% elif item.last and item.last.success == 0 %}<span class="chip chip-bad">apply fehlgeschlagen</span>
|
||
{% elif item.last %}<span class="chip chip-warn">läuft</span>{% endif %}
|
||
</div>
|
||
<div class="text-xs text-slate-500 mt-0.5">
|
||
{% 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 <span data-rel-utc="{{ f.discovered_at|iso_utc }}" title="{{ f.discovered_at|de_dt }}">…</span>
|
||
</div>
|
||
{% if item.last and item.last.message %}
|
||
<div class="text-xs text-slate-500 mt-1 truncate">↳ {{ item.last.message }}</div>
|
||
{% endif %}
|
||
</div>
|
||
<div class="flex gap-2">
|
||
{% if apply_allowed and not (item.last and item.last.success == 1) %}
|
||
<form method="post" action="/actions/apply">
|
||
<input type="hidden" name="csrf" value="{{ csrf }}">
|
||
<input type="hidden" name="flat_id" value="{{ f.id }}">
|
||
<button class="btn btn-primary text-sm" type="submit"
|
||
onclick="return confirm('Bewerbung für {{ (f.address or f.link)|e }} ausführen?');">
|
||
Bewerben
|
||
</button>
|
||
</form>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
{% else %}
|
||
<div class="px-4 py-8 text-center text-slate-500">Noch keine Wohnungen entdeckt.</div>
|
||
{% endfor %}
|
||
</div>
|
||
</section>
|
||
|
||
</div>
|