{% extends "base.html" %} {% block title %}{{ profile_user.display_name or profile_user.email.split('@')[0] }} — The Shooter's Network{% endblock %} {% block content %}
{{ profile_user.bio }}
{% endif %}| {{ _('Session') }} | {{ _('Location') }} | {{ _('Distance') }} |
|---|---|---|
| {{ s.session_date.strftime('%d %b %Y') }} | {{ s.location_name or '—' }} | {% if s.distance_m %}{{ s.distance_m }} m{% else %}—{% endif %} |
{{ _('No public sessions yet.') }}
{% endif %} {# ---- Equipment (optional) ---- #} {% if equipment is not none %}| {{ _('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 '—' }} |
{{ _('No equipment listed.') }}
{% endif %} {% endif %} {% endblock %}