{% extends "layouts/base.html" %} {% block title %}Teams - TryoutPro{% endblock %} {% block page_title %}Teams{% endblock %} {% block breadcrumb %}Home / Teams{% endblock %} {% block header_actions %} {% if can_manage %} {% endif %} {% endblock %} {% block content %} {% if can_manage %}

Create New Team

{% endif %} {% for team in teams %}

{{ team.name }}

{% if team.coach %} Coach: {{ team.coach.full_name }} {% else %} No coach assigned {% endif %} {% if can_manage %}
{% endif %}
{% if can_manage %} {% endif %} {% for player in team.players %} {% if can_manage %} {% endif %} {% else %} {% endfor %}
Player Position / Role Email PhoneActions
{{ player.full_name[:2] | upper }}
{{ player.full_name }}
{{ player.role | capitalize }} {{ player.email }} {{ player.phone or '-' }}

No players assigned

{% if can_manage %}

Add players to this team using the form below.

{% endif %}
{% if can_manage %}
Add Player to {{ team.name }}
{% endif %}
{% else %}

No teams yet

{% if can_manage %}

Create organization teams and assign coaches to manage tryouts.

{% else %}

There are no teams to display.

{% endif %}
{% endfor %} {% endblock %}