{% extends "mobile/base.html" %} {% load i18n %} {% comment %} M3 -- design_handoff_rosterchief_platform/README.md's M3 section: a full- width chronological agenda, grouped under "This week"/"Next week" (see CalendarView's own docstring for the browsing-window judgment call -- current + next calendar week, no further paging). No person switcher and no club-wide toggle here -- always every event self.managed_people is invited to, full stop. -mx-4 breaks the rows out of base.html's shared page padding so they run edge-to-edge, matching the design canvas's own M3 markup (the desktop List/Month/"Games only" controls in that mock aren't reproduced here -- no real functionality behind them yet). {% endcomment %} {% block content %}
{% if not managed_people %}

{% trans "No one to show yet" %}

{% trans "Once you're linked to a member record, their schedule will show up here." %}

{% elif not this_week and not next_week %}

{% trans "Nothing scheduled in the next two weeks." %}

{% else %} {% if this_week %}
{% trans "This week" %}
{% for row in this_week %} {% include "mobile/_calendar_row.html" %} {% endfor %}
{% endif %} {% if next_week %}
{% trans "Next week" %}
{% for row in next_week %} {% include "mobile/_calendar_row.html" %} {% endfor %}
{% endif %} {% endif %}
{% endblock content %}