{% extends "mobile/coach/base.html" %} {% load i18n %} {% comment %} Bottom-tab "Schedule" -- every upcoming event for the active team (not just the next one, that's Today's job), grouped into This week/Next week/by-month dividers -- see CoachScheduleView's own docstring for the shared agenda_groups grouping behind this (also mobile.views.CalendarView and management.views.EventListView's "List" mode). Each row links straight into the coach-relevant action for its kind rather than mobile:event_detail (the Member-shell RSVP page). {% endcomment %} {% block content %} {% if not active_team %}

{% trans "Not staffing a team yet" %}

{% elif not this_week and not next_week and not later_months %}

{% trans "Nothing scheduled." %}

{% else %}
{% if this_week %}
{% trans "This week" %}
{% for event in this_week %} {% if not forloop.first %}
{% endif %} {% include "mobile/coach/_schedule_row.html" %} {% endfor %}
{% endif %} {% if next_week %}
{% trans "Next week" %}
{% for event in next_week %} {% if not forloop.first %}
{% endif %} {% include "mobile/coach/_schedule_row.html" %} {% endfor %}
{% endif %} {% for month in later_months %}
{{ month.month_start|date:"F Y" }}
{% for event in month.items %} {% if not forloop.first %}
{% endif %} {% include "mobile/coach/_schedule_row.html" %} {% endfor %}
{% endfor %}
{% endif %} {% endblock content %}