{% extends "base.html" %} {% block content %}

Manage Teams for Season: {{ season.name }}

Pending Requests

{% if pending_teams %} {% else %}

No pending requests.

{% endif %}

Approved Teams

{% if approved_teams %} {% else %}

No approved teams.

{% endif %}

Directly Add Teams

Select teams to bypass the request process and approve immediately.

{% for team in all_teams %} {% if team.id not in enrolled_ids %} {% endif %} {% endfor %}
← Back to Admin Dashboard
{% endblock %}