{% 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 %}