{% extends "base.html" %} {% load staticfiles %} {% block title %} {{ BUILD_ORDER }} - SC2Benchmarks {% endblock %} {% block content %}

Build order: {{ BUILD_ORDER }}

{% if results %} {% for result in results %} {% endfor %} {% else %} No replays uploaded for this build order yet {% endif %}


{# {{ REPLAYS|safe|linebreaksbr }} #}


{{ report|safe|linebreaksbr }}
Benchmarks for this build order:
{% for benchmark in unit_benchmarks %}
{{ benchmark.count }} x {{ benchmark.humanName }} @ {{ benchmark.time }}
{% endfor %} {% for benchmark in upgrade_benchmarks %}
{{ benchmark.humanName }} @ {{ benchmark.time }}
{% endfor %} {% for benchmark in building_benchmarks %}
{{ benchmark.count }} x {{ benchmark.humanName }} @ {{ benchmark.time }}
{% endfor %} {{ BENCHMARK_LIST|safe|linebreaksbr }}
{% endblock %}