{% extends "base.html" %} {% block title %}The Shooter's Network — Track, analyze, share{% endblock %} {% block body %}

The Shooter's Network

Analyze your ballistic data, track every session, manage your equipment, and share your performance with the community.

{% if current_user.is_authenticated %} New Analysis Log a Session {% else %} Get started — free Try without account {% endif %}
📊

Ballistic Analysis

Upload CSV files from your chronograph and get instant shot-group statistics, velocity charts, and PDF reports.

🎯

Session Tracking

Log every range visit with location, weather, rifle, ammo, and distance. All your data in one place.

🤝

Community Feed

Share your public sessions and see what other shooters are achieving on the range.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Latest sessions

{% if public_sessions %}
{% for s in public_sessions %}
{% if s.user.avatar_url %} {% else %}
{{ (s.user.display_name or s.user.email)[0].upper() }}
{% endif %} {{ s.user.display_name or s.user.email.split('@')[0] }}
{{ s.label }}
{{ s.session_date.strftime('%d %b %Y') }} {% if s.location_name %}📍 {{ s.location_name }}{% endif %} {% if s.distance_m %}{{ s.distance_m }} m{% endif %} {% if s.weather_cond %}{{ s.weather_cond.replace('_', ' ').title() }}{% endif %} {% if s.weather_temp_c is not none %}{{ s.weather_temp_c }}°C{% endif %}
{% endfor %}
{% else %}

No public sessions yet. Be the first to share one!

{% endif %}
{% endblock %}