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

{{ team.name }}

{{ team.league.name if team.league else "Default League" }}

Rank #{{ team_rank }} {{ total_points }} Points {{ team_members|length }} Members
{% if not user %} Login to Join {% elif not is_team_member %}

Join This Team

{% if is_open %}

This is an open team. You can join immediately.

{% else %}

This is a closed team. You need to request to join and be approved by a team captain.

Request to Join {% endif %}
{% else %} {% endif %}

POINTS THIS MONTH

{{ points_this_month }}

{{ point_change|abs }} from last month

BEST PERFORMANCE

1st Place

August 12, 2023

TEAM FOUNDED

{{ days_ago }} days ago

{{ founded_date }}

Team Members

{% for member in team_members %}
{% if member.user.picture %} User {% else %}
{{ member.user.username[0]|upper }}
{% endif %}

{{ member.user.username }}

Joined {{ member.joined }}

{% if member.is_admin %} Captain {% else %} Member {% endif %}
{% endfor %}

Team Performance

Performance chart would appear here

Last quiz night

{{ performance.last_quiz }}

Average per quiz

{{ performance.average }}

Best streak

{{ performance.best_streak }}

Recent Activity

{% for activity in activities %} {% if activity.type == 'points' %}

Earned {{ activity.points }} points in "{{ activity.event }}"

{{ activity.date }}

{% elif activity.type == 'join' %}

{{ activity.user }} joined the team

{{ activity.date }}

{% elif activity.type == 'achievement' %}

Achieved {{ activity.achievement }} in "{{ activity.event }}"

{{ activity.date }}

{% endif %} {% endfor %}
{% if is_user_admin %}

Team Management

{% if is_user_owner %}

You are the owner of this team

{% elif is_user_admin %}

You are an admin of this team

{% endif %}
{% endif %} {% if is_team_member and not is_user_owner %}

Team Membership

You are currently a member of this team.

{% endif %}
{% endblock %}