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

Welcome, {{ user.username }}!

Here's your quiz league status

Your Teams

{{ team_count }}

Total Points

{{ total_points }}

Best Ranking

{% if best_rank %}#{{ best_rank }}{% else %}-{% endif %}

Recent Activity

{% if recent_activity %}
{% for activity in recent_activity %}
{% if activity.type == 'qr_redeem' %}

You redeemed a QR code for {{ activity.points }} points

Team: {{ activity.team_name }} • {{ activity.date }}

{% endif %}
{% endfor %}
{% else %}

No recent activity to show

{% endif %}

Your Teams

{% if teams %}
{% for team in teams %}

{{ team.name }}

{{ team_points[team.id].points }} points • Rank #{{ team_points[team.id].rank }}

{% if team.id in admin_team_ids %} Admin {% endif %} View
{% endfor %}
{% else %}

You haven't joined any teams yet

{% endif %}

Redeem Code

Have a QR code from your quiz master? Scan or enter it here to claim points!

Leaderboard Preview

View Full Leaderboard
Rank Team Points
1 Quiz Masters 287
2 Trivia Titans 215
3 Beer Brainiacs 194
{% endblock %}