{% extends 'base.html' %} {% block title %}{{ _('Profile') }} - CrashXAF{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ _('My Profile') }}

Avatar

{{ current_user.username }}

+237 {{ current_user.phone[:3] if current_user.phone else '---' }} {{ current_user.phone[3:6] if current_user.phone else '---' }} {{ current_user.phone[6:] if current_user.phone else '---' }}

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

{{ "{:,.0f}".format(current_user.total_won) }}
{{ _('XAF Won') }}
{{ current_user.total_games }}
{{ _('Games Played') }}
{{ "%.2f"|format(current_user.highest_win_multiplier) }}x
{{ _('Best Multiplier') }}

{{ _('Edit Profile') }}

{{ _('Username cannot be changed') }}

{{ _('Change PIN') }}

{% endblock %}