bewerben UX: instant feedback; drop forensics detail; partner feature
1. Bewerben button: hx-disabled-elt + hx-on::before-request flips the text to "läuft…" and disables the button the moment the confirm is accepted. .btn[disabled] now renders at 55% opacity with not-allowed cursor. Existing 3s poll interval picks up the running state for the chip beside the address. 2. Bewerbungen tab: delete the /bewerbungen/<id> forensics detail page + template entirely. The list now shows a plain "Report (ZIP)" button for every row regardless of success — same download route (/bewerbungen/<id>/report.zip), same visual style. External link to the listing moved onto the address itself. 3. Verified retention: web/retention.py runs cleanup_retention() hourly, which DELETEs errors + audit_log rows older than RETENTION_DAYS (14) and nulls applications.forensics_json for older rows. No code change needed. 4. Partner feature. Migration v8 adds partnerships(from_user_id, to_user_id, status, created_at, accepted_at). Einstellungen → Partner lets users: - send a request by username - accept / decline incoming requests - withdraw outgoing requests - unlink the active partnership A user can only have one accepted partnership; accepting one wipes stale pending rows involving either side. On the Wohnungen list, if the partner has applied to a flat, a small primary-colored circle with the partner's first-name initial sits on the top-right of the Bewerben button; if they've rejected it, the badge sits on Ablehnen. Badge is hover-tooltipped with the partner's name + verb. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3bb04210c4
commit
a212dff4d9
8 changed files with 379 additions and 166 deletions
|
|
@ -149,17 +149,25 @@
|
|||
{% if apply_allowed and not (item.last and item.last.success == 1) %}
|
||||
{% set is_running = item.last and item.last.finished_at is none %}
|
||||
<form method="post" action="/actions/apply"
|
||||
hx-post="/actions/apply" hx-target="#wohnungen-body" hx-swap="outerHTML">
|
||||
class="btn-with-badge"
|
||||
hx-post="/actions/apply" hx-target="#wohnungen-body" hx-swap="outerHTML"
|
||||
hx-disabled-elt="find button">
|
||||
<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"
|
||||
{% if is_running %}disabled{% endif %}
|
||||
hx-confirm="Bewerbung für {{ (f.address or f.link)|e }} starten?">
|
||||
hx-confirm="Bewerbung für {{ (f.address or f.link)|e }} starten?"
|
||||
hx-on::before-request="this.textContent='läuft…'; this.disabled=true">
|
||||
{% if is_running %}läuft…{% else %}Bewerben{% endif %}
|
||||
</button>
|
||||
{% if partner and f.id in partner.applied_flat_ids %}
|
||||
<span class="partner-badge"
|
||||
title="{{ partner.name }} hat sich bereits beworben">{{ partner.initial }}</span>
|
||||
{% endif %}
|
||||
</form>
|
||||
{% endif %}
|
||||
<form method="post" action="/actions/reject"
|
||||
class="btn-with-badge"
|
||||
hx-post="/actions/reject" hx-target="#wohnungen-body" hx-swap="outerHTML">
|
||||
<input type="hidden" name="csrf" value="{{ csrf }}">
|
||||
<input type="hidden" name="flat_id" value="{{ f.id }}">
|
||||
|
|
@ -167,6 +175,10 @@
|
|||
hx-confirm="Ablehnen und aus der Liste entfernen?">
|
||||
Ablehnen
|
||||
</button>
|
||||
{% if partner and f.id in partner.rejected_flat_ids %}
|
||||
<span class="partner-badge"
|
||||
title="{{ partner.name }} hat abgelehnt">{{ partner.initial }}</span>
|
||||
{% endif %}
|
||||
</form>
|
||||
<button type="button" class="flat-expand-btn" aria-label="Details"
|
||||
data-flat-id="{{ f.id }}">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue