{% extends "base.html" %} {% block title %}{{ profile_user.display_name or profile_user.email.split('@')[0] }} — The Shooter's Network{% endblock %} {% block content %}
{% set av = profile_user.effective_avatar_url %} {% if av %} Avatar {% else %}
👤
{% endif %}

{{ profile_user.display_name or profile_user.email.split('@')[0] }}

{{ _('Member since %(date)s', date=profile_user.created_at.strftime('%B %Y')) }}
{% if profile_user.bio %}

{{ profile_user.bio }}

{% endif %}
{# ---- Public Sessions ---- #}

{{ _('Sessions') }}{% if public_sessions %} ({{ public_sessions|length }}){% endif %}

{% if public_sessions %} {% for s in public_sessions %} {% endfor %}
{{ _('Session') }}{{ _('Location') }}{{ _('Distance') }}
{{ s.session_date.strftime('%d %b %Y') }} {{ s.location_name or '—' }} {% if s.distance_m %}{{ s.distance_m }} m{% else %}—{% endif %}
{% else %}

{{ _('No public sessions yet.') }}

{% endif %} {# ---- Equipment (optional) ---- #} {% if equipment is not none %}

{{ _('Equipment') }}

{% if equipment %} {% for item in equipment %} {% endfor %}
{{ _('Name') }}{{ _('Category') }}{{ _('Brand / Model') }}{{ _('Caliber') }}
{{ item.name }} {{ item.category.title() }} {% if item.brand or item.model %} {{ item.brand or '' }}{% if item.brand and item.model %} {% endif %}{{ item.model or '' }} {% else %}—{% endif %} {{ item.caliber or '—' }}
{% else %}

{{ _('No equipment listed.') }}

{% endif %} {% endif %} {% endblock %}