{% 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). Each row links straight into the coach-relevant action for its kind rather than mobile:event_detail (the Member-shell RSVP page) -- see CoachScheduleView's own docstring. {% endcomment %} {% block content %} {% if not active_team %}

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

{% elif not events %}

{% trans "Nothing scheduled." %}

{% else %}
{% for event in events %} {% if not forloop.first %}
{% endif %}
{{ event.start|date:"D" }}
{{ event.start|date:"d" }}
{{ event.title }}
{{ event.start|date:"H:i" }}{% if event.location %} · {{ event.location.name }}{% endif %}
{{ event.get_kind_display }}
{% endfor %}
{% endif %} {% endblock content %}