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

Teams

{% if error %} {% endif %}

Available Teams

{% if teams %}
    {% for team in teams %}
  • {{ team.name }} {% if user %} {% if team.id in user_team_ids %} Member {% else %}
    {% endif %} {% else %} Login to Join {% endif %}
  • {% endfor %}
{% else %}

No teams available yet.

{% endif %}

Create New Team

{% if user %}
{% else %}

You need to be logged in to create a team

Log In
{% endif %}
{% if user and user_team_ids %}

Your Teams

{% for team in teams %} {% if team.id in user_team_ids %}

{{ team.name }}

{{ team.description|default("No description available", true)|truncate(120) }}
View Team
{% endif %} {% endfor %}
{% endif %}

About Teams

Teams are the heart of LeagueLedger. Join an existing team or create your own to start tracking your pub quiz triumphs!

Every point counts in the journey to becoming pub quiz champions.

{% endblock %}