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

{{ user.username }}

Member since {{ user.created_at.strftime('%B %Y') }}

{% if user.is_verified %} Verified {% endif %} {{ user.memberships|length }} Teams

{% if messages %}
{% for message in messages %}
{{ message.text }}
{% endfor %}
{% endif %}

Personal Information

Change Password

Your Statistics

Total Points

378

QR Codes Redeemed

24

Teams Joined

{{ user.memberships|length }}

Best Position

#2

Your Teams

{% for team_info in user_teams %}
{{ team_info.team.name }}
{% if team_info.is_admin %} Captain {% else %} Member {% endif %}

Current Points: 187

Current Rank: #4

View Team
{% else %}

You haven't joined any teams yet.

{% endfor %} Join or Create Another Team

Danger Zone

These actions cannot be undone. Please be certain.

Delete Account
{% endblock %}