Fix RSVP buttons broken by hx-boost; require a real Out reason; add optional Maybe reason

The In/Out hero buttons (and Out's reason confirm) stopped working: Alpine
owns the toggle between a row's two sibling forms (buttons vs. the reason
prompt), and hx-boost="true" on <body> had htmx *also* intercepting the
same submit -- both ended up fighting over it. Fixed by marking every
write-action <form> across the mobile app hx-boost="false" (link
navigation, where the smooth-navigation feature actually matters, is
untouched). The one exception worth calling out: coach/lineup.html's form
uses three submit buttons sharing one <form> via formaction overrides --
htmx's boost reads the form's own action rather than the submitter's
formaction override, so a boosted click there would always have posted to
the wrong endpoint regardless of the Alpine conflict.

Also:
- A reason for Out is now mandatory, not just captured -- empty and
  punctuation-only "answers" (a bare ".", "-", "??") are rejected
  server-side (the authoritative check) with textarea required/minlength
  as a client-side nudge on top.
- Maybe can now carry an optional reason too, visible to the same audience
  as Out's (this member/family, and Coach mode's bench attendance) -- one
  shared reason form in event_detail.html's per-person row, its hidden
  status input following whichever of Maybe/Out was tapped.
- The 3-way In/Maybe/Out row (and the 2-way hero In/Out) now use min-w-0 on
  every button so flex-1 actually splits the row evenly -- a longer
  label's own intrinsic width was winning it a bigger share otherwise.
- HomeView's "Needs your answer" list now excludes events whose
  registration deadline has already passed -- replying is no longer
  possible there (same rule EventDetailView.post already enforces), so it
  doesn't belong in a "still needs a reply" list. hero_attendance is
  unaffected -- it always shows the true next event, falling back to a
  read-only pill once its own deadline closes.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01ECGMEwrc2k4D8VQuwjstj9
This commit is contained in:
2026-08-22 14:59:23 +02:00
parent 614c35861b
commit 366239e60b
14 changed files with 160 additions and 49 deletions

View File

@@ -9,10 +9,14 @@
bench attendance (mobile/templates/mobile/coach/attendance.html) is the
entire access story, no extra permission check needed.
Expects ``hero_attendance`` in scope. ``cross_shell`` (optional, truthy)
adds hx-boost="false" to both forms -- pass this when included from Coach
mode, since mobile:event_detail is a Member-shell view (see coach/
today.html's own comment on why that matters).
Expects ``hero_attendance`` in scope. ``cross_shell`` no longer changes
anything here (kept as a no-op param for call-site compatibility) -- both
forms are unconditionally hx-boost="false" regardless of shell. Boosting
a form that Alpine also owns (x-show toggling between this pair of
sibling forms) had htmx and Alpine both trying to intercept the same
submit, which was breaking both In and Out. A real navigation for a
write action is a fine, standard trade -- hx-boost's value is in link-to-
link browsing, not swallowing every POST on the page.
Neither button is colour-coded (no green "In") -- nobody has answered yet
at this point (that's the whole reason for the "are you in?" prompt), so
@@ -25,7 +29,7 @@
{% endcomment %}
<div class="mt-3" x-data="{ asking: false, reason: '{{ hero_attendance.note|default:""|escapejs }}' }">
<div class="flex gap-2" x-show="!asking">
<form class="min-w-0 flex-1" method="post" action="{% url "mobile:event_detail" hero_attendance.event.pk %}" {% if cross_shell %}hx-boost="false"{% endif %}>
<form class="min-w-0 flex-1" method="post" action="{% url "mobile:event_detail" hero_attendance.event.pk %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="member_id" value="{{ hero_attendance.member.pk }}">
<input type="hidden" name="status" value="present">
@@ -34,12 +38,12 @@
<button class="btn w-full min-w-0 flex-1 bg-steel text-on-dark" type="button" @click="asking = true">{% trans "Out" %}</button>
</div>
<form x-show="asking" x-cloak method="post" action="{% url "mobile:event_detail" hero_attendance.event.pk %}" {% if cross_shell %}hx-boost="false"{% endif %}>
<form x-show="asking" x-cloak method="post" action="{% url "mobile:event_detail" hero_attendance.event.pk %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="member_id" value="{{ hero_attendance.member.pk }}">
<input type="hidden" name="status" value="absent">
<label class="mb-1 block text-xs font-semibold text-on-dark-dim">{% trans "Reason (optional -- only you and the coach can see this)" %}</label>
<textarea class="h-16 w-full rounded-lg border border-steel bg-steel p-2 text-sm text-white placeholder:text-on-dark-dim" name="note" x-model="reason" placeholder="{% trans "e.g. sick, family event..." %}"></textarea>
<label class="mb-1 block text-xs font-semibold text-on-dark-dim">{% trans "Reason -- only you and the coach can see this" %}</label>
<textarea class="h-16 w-full rounded-lg border border-steel bg-steel p-2 text-sm text-white placeholder:text-on-dark-dim" name="note" x-model="reason" required minlength="2" placeholder="{% trans "e.g. sick, family event..." %}"></textarea>
<div class="mt-2 flex gap-2">
<button class="btn flex-1 bg-steel text-on-dark" type="button" @click="asking = false">{% trans "Cancel" %}</button>
<button class="btn btn-dark flex-1" type="submit">{% trans "Confirm" %}</button>

View File

@@ -10,7 +10,7 @@
treatment as management/templates/management/home.html's own
notifications card.
{% endcomment %}
<form method="post" action="{% url "mobile:notifications" %}">
<form method="post" action="{% url "mobile:notifications" %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="action" value="mark_read">
<input type="hidden" name="notification_id" value="{{ row.notification.pk }}">

View File

@@ -39,7 +39,7 @@
<div class="m-card p-4">
<div class="text-sm font-semibold text-ink">{% trans "Reset link" %}</div>
<p class="mt-1 text-xs text-muted">{% trans "If you've shared this link and want to take it back, reset it -- the old one stops working immediately and you'll need to re-subscribe with the new one." %}</p>
<form class="mt-3" method="post" action="{% url "mobile:calendar_feed_settings" %}">
<form class="mt-3" method="post" action="{% url "mobile:calendar_feed_settings" %}" hx-boost="false">
{% csrf_token %}
<button type="submit" class="btn btn-secondary w-full">{% trans "Reset my calendar link" %}</button>
</form>

View File

@@ -28,7 +28,7 @@
</a>
</div>
<form method="post" action="{% url "mobile:coach_add_player" %}" x-data="{ count: 0 }">
<form method="post" action="{% url "mobile:coach_add_player" %}" x-data="{ count: 0 }" hx-boost="false">
{% csrf_token %}
<div class="m-card flex flex-col overflow-hidden">
{% for candidate in candidates %}

View File

@@ -36,7 +36,7 @@
</a>
</div>
<form method="post" action="{% url "mobile:coach_attendance" event.pk %}">
<form method="post" action="{% url "mobile:coach_attendance" event.pk %}" hx-boost="false">
{% csrf_token %}
<div class="m-card flex flex-col overflow-hidden">
{% for row in rows %}
@@ -45,7 +45,8 @@
<div class="min-w-0 flex-1">
<div class="text-sm font-semibold text-ink">{{ row.member.get_full_name }}</div>
<div class="text-xs text-muted">{{ row.membership.position|default:"—" }}</div>
{% if row.status == "absent" and row.note %}
{% if row.note %}
{# Only ever set alongside absent/maybe -- EventDetailView.post clears it for present. #}
<div class="mt-0.5 truncate text-xs text-club-dark italic">&ldquo;{{ row.note }}&rdquo;</div>
{% endif %}
</div>

View File

@@ -24,7 +24,7 @@
</div>
{% endif %}
<form id="coach-event-form" method="post" action="{% url "mobile:coach_create_event" %}">
<form id="coach-event-form" method="post" action="{% url "mobile:coach_create_event" %}" hx-boost="false">
{% csrf_token %}
<div class="grid grid-cols-3 gap-2">

View File

@@ -11,6 +11,12 @@
throughout rather than overriding the shared .coach-sheet's own light
background -- a real per-screen shell hook is more infrastructure than
one screen justifies.
Both forms are hx-boost="false" -- the first has three submit buttons
sharing one <form> via formaction overrides (Save/+Add slot/+Add line),
and htmx's boost reads the form's own action rather than the actual
submitter's formaction override, so a boosted click would always post
to the wrong endpoint. A plain navigation sidesteps that entirely.
{% endcomment %}
{% block header_extra %}
@@ -22,7 +28,7 @@
{% endblock header_extra %}
{% block content %}
<form method="post" action="{% url "mobile:coach_lineup" event.pk %}">
<form method="post" action="{% url "mobile:coach_lineup" event.pk %}" hx-boost="false">
{% csrf_token %}
<div class="flex flex-col gap-3">
{% for unit in units %}
@@ -67,7 +73,7 @@
{% endif %}
{% if can_manage_active_team and not lineup.published_at %}
<form class="mt-2" method="post" action="{% url "mobile:coach_lineup_publish" event.pk %}">
<form class="mt-2" method="post" action="{% url "mobile:coach_lineup_publish" event.pk %}" hx-boost="false">
{% csrf_token %}
<button class="btn w-full bg-ice text-ice-ink" type="submit">{% trans "Publish" %}</button>
</form>

View File

@@ -24,7 +24,7 @@
</div>
{% endif %}
<form id="coach-news-form" method="post" action="{% url "mobile:coach_create_news" %}">
<form id="coach-news-form" method="post" action="{% url "mobile:coach_create_news" %}" hx-boost="false">
{% csrf_token %}
<div class="m-card flex flex-col p-4">

View File

@@ -80,14 +80,7 @@
{% if rsvp_closed %}
<span class="pill pill-neutral mt-3">{{ hero_attendance.get_status_display }}</span>
{% else %}
{% comment %}
hx-boost="false" (passed as cross_shell below) -- mobile:event_detail
is a Member-shell view (bg-paper, not this page's bg-ink); boosting
would swap its response into this page's <body> without updating the
<body> tag's own class, leaving the wrong background. See base.html's
own comment for the full reasoning.
{% endcomment %}
{% include "mobile/_hero_rsvp.html" with cross_shell=True %}
{% include "mobile/_hero_rsvp.html" %}
{% endif %}
</div>
</div>

View File

@@ -12,7 +12,7 @@
{% endcomment %}
{% block content %}
<form method="post" class="flex flex-col gap-4">
<form method="post" class="flex flex-col gap-4" hx-boost="false">
{% csrf_token %}
<div class="-mx-4 -mt-4 flex items-center gap-1 border-b border-line bg-white px-4 py-3">

View File

@@ -11,6 +11,12 @@
under a dark gradient -- individual events have no photo of their own, so
this is the one club-wide stand-in -- falling back to a plain dark
background when the club hasn't uploaded one.
The per-person In/Maybe/Out forms below are hx-boost="false" -- Alpine
owns the toggle between this row's two sibling forms (buttons vs. the
Out reason prompt), and having htmx *also* intercept the submit broke
both. A real navigation for a write action is a fine trade; hx-boost's
value is in link-to-link browsing, not every POST on the page.
{% endcomment %}
{% block content %}
@@ -82,40 +88,44 @@
{% trans "Maybe" as label_maybe %}
{% trans "Out" as label_out %}
{% with status=answer.attendance.status %}
<div x-data="{ asking: false, reason: '{{ answer.attendance.note|default:""|escapejs }}' }">
<div x-data="{ asking: null, reason: '{{ answer.attendance.note|default:""|escapejs }}' }">
<div class="flex gap-1.5" x-show="!asking">
<form class="flex-1" method="post" action="{% url "mobile:event_detail" event.pk %}">
<form class="min-w-0 flex-1" method="post" action="{% url "mobile:event_detail" event.pk %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="member_id" value="{{ answer.member.pk }}">
<input type="hidden" name="status" value="present">
<input type="hidden" name="next" value="event_detail">
<button type="submit" class="btn h-11 w-full text-[15px] {% if status == "present" %}btn-positive{% else %}bg-paper border border-stroke text-muted{% endif %}">{{ label_in }}</button>
</form>
<form class="flex-1" method="post" action="{% url "mobile:event_detail" event.pk %}">
{% csrf_token %}
<input type="hidden" name="member_id" value="{{ answer.member.pk }}">
<input type="hidden" name="status" value="maybe">
<input type="hidden" name="next" value="event_detail">
<button type="submit" class="btn h-11 w-full text-[15px] {% if status == "maybe" %}bg-steel text-white{% else %}bg-paper border border-stroke text-muted{% endif %}">{{ label_maybe }}</button>
</form>
<button type="button" class="btn h-11 w-full flex-1 text-[15px] {% if status == "absent" %}bg-club text-white{% else %}bg-paper border border-stroke text-muted{% endif %}" @click="asking = true">{{ label_out }}</button>
<button type="button" class="btn h-11 w-full min-w-0 flex-1 text-[15px] {% if status == "maybe" %}bg-steel text-white{% else %}bg-paper border border-stroke text-muted{% endif %}" @click="asking = 'maybe'">{{ label_maybe }}</button>
<button type="button" class="btn h-11 w-full min-w-0 flex-1 text-[15px] {% if status == "absent" %}bg-club text-white{% else %}bg-paper border border-stroke text-muted{% endif %}" @click="asking = 'absent'">{{ label_out }}</button>
</div>
<form x-show="asking" x-cloak method="post" action="{% url "mobile:event_detail" event.pk %}">
{% comment %}
One shared reason form for both Maybe (optional) and Out
(mandatory -- enforced server-side, EventDetailView.post) --
:value on the hidden status input follows whichever button
was tapped. No required/minlength attrs here: mixing that
with a dynamic per-status requirement got fiddly for what
the backend already enforces authoritatively regardless.
{% endcomment %}
<form x-show="asking" x-cloak method="post" action="{% url "mobile:event_detail" event.pk %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="member_id" value="{{ answer.member.pk }}">
<input type="hidden" name="status" value="absent">
<input type="hidden" name="status" :value="asking">
<input type="hidden" name="next" value="event_detail">
<label class="mb-1 block text-xs font-semibold text-muted">{% trans "Reason (optional -- only you and the coach can see this)" %}</label>
<label class="mb-1 block text-xs font-semibold text-muted" x-show="asking === 'absent'">{% trans "Reason -- only you and the coach can see this" %}</label>
<label class="mb-1 block text-xs font-semibold text-muted" x-show="asking === 'maybe'">{% trans "Add a reason (optional) -- only you and the coach can see this" %}</label>
<textarea class="h-16 w-full rounded-lg border border-stroke bg-paper p-2 text-sm text-ink" name="note" x-model="reason" placeholder="{% trans "e.g. sick, family event..." %}"></textarea>
<div class="mt-2 flex gap-2">
<button type="button" class="btn btn-secondary h-9 flex-1 text-xs" @click="asking = false">{% trans "Cancel" %}</button>
<button type="button" class="btn btn-secondary h-9 flex-1 text-xs" @click="asking = null">{% trans "Cancel" %}</button>
<button type="submit" class="btn btn-dark h-9 flex-1 text-xs">{% trans "Confirm" %}</button>
</div>
</form>
</div>
{% if status == "absent" and answer.attendance.note %}
{% if answer.attendance.note %}
{# Only ever set alongside absent/maybe -- EventDetailView.post clears it for present. #}
<p class="mt-1.5 text-xs text-muted italic">&ldquo;{{ answer.attendance.note }}&rdquo;</p>
{% endif %}
{% endwith %}

View File

@@ -28,7 +28,7 @@
{% if today or earlier_this_week or older %}
<div class="flex items-center justify-between">
{% if unread_notification_count %}
<form method="post" action="{% url "mobile:notifications" %}">
<form method="post" action="{% url "mobile:notifications" %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="action" value="mark_all_read">
<button class="font-display text-xs font-extrabold tracking-wide text-club uppercase" type="submit">{% trans "Mark all read" %}</button>
@@ -36,7 +36,7 @@
{% else %}
<span></span>
{% endif %}
<form method="post" action="{% url "mobile:notifications" %}">
<form method="post" action="{% url "mobile:notifications" %}" hx-boost="false">
{% csrf_token %}
<input type="hidden" name="action" value="clear_all">
<button class="font-display text-xs font-extrabold tracking-wide text-muted uppercase" type="submit">{% trans "Clear all" %}</button>