{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}

Benchmarks for {{ BO_NAME }}

Most build order sites will contain relevant benchmarks. If you are unsure, tools like GGTracker can help you find them easily without having to load up the actual replay.

{% crispy form %}
{% crispy buildingForm %}
{% crispy upgradeForm %}


{{ error }}
{% if unit_benchmarks or building_benchmarks or upgrade_benchmarks %} Benchmarks:

{% endif %} {% for benchmark in unit_benchmarks %}
{{ benchmark.count }} x {{ benchmark.humanName }} @ {{ benchmark.time }}

{% endfor %} {% for benchmark in building_benchmarks %}
{{ benchmark.count }} x {{ benchmark.humanName }} @ {{ benchmark.time }}

{% endfor %} {% for benchmark in upgrade_benchmarks %}
{{ benchmark.humanName }} @ {{ benchmark.time }}

{% endfor %}
{% csrf_token %} {{ start_practice_form.as_p }}
{% endblock %}