{% extends 'admin/__base__.html' %} {% block title %} {{ team.name | title }} {% endblock %} {% block sidebar %} {% from 'admin/macros.html' import generate_sidebar %} {{ generate_sidebar('Team') }} {% endblock %} {% block main %}

Team {{ team.name | title }}


This team is registered for the event {{ team.event.name }}. Led by {{ team.leader.fullname }} {% if team.participants %} , the team includes the following members:

{% else %} . There are no other members in this team.
{% endif %} {% endblock %}