{% extends "overview_base.html" %} {% comment %} Copyright (c) 2012 The Chromium OS Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. This template describes the overall page structure for the birds-eye overview perf graph webpage that compares the results of a given test among all branches or all platforms. {% endcomment %} {% block title %} Compare by {% if compare_type == "branch" %} Branch: {% else %} Platform: {% endif %} {{ test_name }} {% endblock %} {% block content %}

{{ autotest_name }}: {{ test_name }}

{# Create HTML for the perf graphs table. #} {% for outer_list_item in outer_list %} {% for info in outer_list_item %} {% if forloop.first %}

{{ info.outer_item }}

{% endif %} {% if info.has_data %} {% else %} {% endif %} {% if forloop.counter|divisibleby:"3" %}{% endif %} {% endfor %}
{% endfor %} {% endblock %}