{% extends "base.html" %} {% block content %}
{% if profile.picture %} Profile {% else %}
{{ profile.username[0]|upper }}
{% endif %}

{{ profile.username }}

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

{% if profile.is_admin %} Admin {% endif %}

Profile Information

Username

{{ profile.username }}

{% if "email" in profile %}

Email

{{ profile.email }}

{% endif %} {% if "first_name" in profile and "last_name" in profile %}

Full Name

{{ profile.first_name }} {{ profile.last_name }}

{% elif "first_name" in profile %}

First Name

{{ profile.first_name }}

{% endif %}

Account Type

{% if profile.is_admin %}Administrator{% else %}User{% endif %}

{% if profile.can_view_points %}

Statistics

Total Points

{{ total_points }}

{% endif %} {% if profile.can_view_teams and teams %}

Teams

{% for team in teams %}
{{ team.name }}
{% if team.is_captain %} Captain {% else %} Member {% endif %}
{% endfor %}
{% endif %} {% if profile.can_view_achievements %}

Achievements

Achievements data will be shown here

{% endif %} {% if profile.can_view_events %}

Recent Events

Recent events will be shown here

{% endif %}
{% endblock %}