{% extends "mobile/base.html" %} {% load i18n %} {% comment %} M2 -- design_handoff_rosterchief_platform/README.md's M2 section, "answer for several". See EventDetailView's own docstring (mobile/views.py) for the judgment calls: no event photos, no Kit/dressing-room fields (the Event model has none), squad response is counts-only (never who answered what). {% endcomment %} {% block content %}
{% if event.kind == "game" %}{% if event.is_home_game %}{% trans "Home game" %}{% else %}{% trans "Away game" %}{% endif %}{% else %}{{ event.get_kind_display }}{% endif %}

{{ event.title }}

{% trans "Face-off" %} {{ event.start|date:"D d M \a\t H:i" }}
{% if event.gathering %}
{% trans "Meet" %} {{ event.gathering|date:"H:i" }}
{% endif %} {% if event.location %}
{% trans "Where" %} {{ event.location.name }}
{{ event.location.address }}, {{ event.location.zip_code }} {{ event.location.city }}
{% endif %}
{% if your_answers %}
{% trans "Your answers" %}
{% for answer in your_answers %} {% if not forloop.first %}
{% endif %}
{% include "mobile/_avatar.html" with person=answer.member size_class="h-8 w-8" %}
{{ answer.member.get_full_name }}
{% if answer.membership %}
{{ answer.membership.team.short_name }} {% if answer.membership.jersey_number %}· #{{ answer.membership.jersey_number }}{% endif %} {% if answer.membership.position %}· {{ answer.membership.position.name }}{% endif %}
{% endif %}
{% if answer.attendance.status == "no_response" %} {% trans "No reply" %} {% endif %}
{% trans "In" as label_in %} {% trans "Maybe" as label_maybe %} {% trans "Out" as label_out %} {% with status=answer.attendance.status %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% endwith %}
{% endfor %}
{% endif %} {% if squad_summary %}
{% trans "Squad response" %} {% blocktrans with responded=squad_summary.responded total=squad_summary.total %}{{ responded }} of {{ total }}{% endblocktrans %}
{{ squad_summary.in_count }} {% trans "in" %} {{ squad_summary.out_count }} {% trans "out" %} {{ squad_summary.no_reply_count }} {% trans "no reply" %}
{% endif %} {% if not your_answers and not squad_summary %}

{% trans "No one you manage is invited to this event." %}

{% endif %} {% endblock content %}