{% extends "base.html" %} {% block title %}{{ _('Profile') }} — The Shooter's Network{% endblock %} {% block content %}

{{ _('Profile') }}

{# ---- Avatar + display name ---- #}

{{ _('Account') }}

{% set av = current_user.effective_avatar_url %} {% if av %} Avatar {% else %}
👤
{% endif %}
{{ _('JPEG/PNG, max 1200 px, auto-resized.') }}
Logged in via {{ current_user.provider.title() }}
{{ _('View my public profile →') }}
{# ---- Change password (local accounts only) ---- #} {% if current_user.provider == 'local' %}

{{ _('Change password') }}

{% endif %} {% endblock %}