{% extends "base.html" %} {% block title %}{{ player_name }}{% endblock %} {% block styles %} {% endblock %} {% block body_class %}player-page{% endblock %} {% block content %}
#{{ rank }}

{{ player_name }}

{{ server }}
{{ stats.points | int }} Points
{{ stats.deaths }} Deaths
{{ (stats.points / stats.deaths) | round(1) if stats.deaths > 0 else '-' }} Points / Death
{{ stats.flight_time | int }} Flight Time (min)

Air Combat

Air Kills {{ stats.air }}
Helo Kills {{ stats.helo }}
Intercept Cargo {{ stats.intercept_cargo_plane }}
CAP Missions {{ stats.CAP_mission }}
Air K/D {{ (stats.air / stats.deaths) | round(1) if stats.deaths > 0 else '-' }}

Ground Combat

Ground Units {{ stats.ground_units }}
Infantry {{ stats.infantry }}
SAM Kills {{ stats.SAM }}
Structures {{ stats.structure }}
CAS Missions {{ stats.CAS_mission }}
Bomb Runway {{ stats.bomb_runway }}
Ground K/D {{ ((stats.ground_units + stats.infantry) / stats.deaths) | round(1) if stats.deaths > 0 else '-' }}

Logistics & Support

Zone Captures {{ stats.zone_capture }}
Zone Upgrades {{ stats.zone_upgrade }}
Warehouse Deliveries {{ stats.warehouse_delivery }}
Points Spent {{ stats.points_spent }}
Pilot Rescues {{ stats.pilot_rescue }}
Recon Missions {{ stats.recon_mission }}
Back to map
{% endblock %}