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

{{ team.name }}

Rank #{{ team_rank }} {{ total_points }} Points {{ team_members|length }} Members

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 %}
User

{{ 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 %}

Team Management

{% endblock %}