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

{{ _('My Sessions') }}

{{ _('+ New session') }}
{% if sessions %} {% for s in sessions %} {% endfor %}
{{ _('Session') }} {{ _('Type') }} {{ _('Location') }} {{ _('Visibility') }}
{{ s.session_date.strftime('%d %b %Y') }} {% if s.session_type == 'long_range' %} {{ _('Long Range') }} {% elif s.session_type == 'prs' %} PRS {% elif s.session_type == 'pistol_25m' %} {{ _('25m Pistol') }} {% else %}—{% endif %} {{ s.location_name or '—' }} {{ _('Public') if s.is_public else _('Private') }} {{ _('Edit') }}
{% else %}
🎯

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

{{ _('Log your first session') }}
{% endif %} {% endblock %}