{% 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 Location Visibility
{{ s.session_date.strftime('%d %b %Y') }} {{ s.location_name or '—' }} {{ 'Public' if s.is_public else 'Private' }} Edit
{% else %}
🎯

No sessions recorded yet.

Log your first session
{% endif %} {% endblock %}