{% extends "base.html" %} {% block title %}{{ analysis.title }} — The Shooter's Network{% endblock %} {% block content %}
| {{ _('Metric') }} | {{ _('Value') }} |
|---|---|
| {{ _('Total shots') }} | {{ overall.count }} |
| {{ _('Min speed') }} | {{ "%.4f"|format(overall.min_speed) }} |
| {{ _('Max speed') }} | {{ "%.4f"|format(overall.max_speed) }} |
| {{ _('Mean speed') }} | {{ "%.4f"|format(overall.mean_speed) }} |
| {{ _('Std dev (speed)') }} | {% if overall.std_speed is not none %}{{ "%.4f"|format(overall.std_speed) }}{% else %}–{% endif %} |
| {{ _('Metric') }} | {{ _('Value') }} |
|---|---|
| {{ _('Min speed') }} | {{ "%.4f"|format(stat.min_speed) }} |
| {{ _('Max speed') }} | {{ "%.4f"|format(stat.max_speed) }} |
| {{ _('Mean speed') }} | {{ "%.4f"|format(stat.mean_speed) }} |
| {{ _('Std dev (speed)') }} | {% if stat.std_speed is not none %}{{ "%.4f"|format(stat.std_speed) }}{% else %}–{% endif %} |