{% 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 shows the summary for a particular branch/platform. {% endcomment %} {% block title %} ChromeOS Perf Overview: {{ branch }}-{{ platform }} {% endblock %} {% block content %} {# Create HTML for overview link matrix. #} {% for b in branches %} {{ b }}: [ {% for p in platform_list %} {{ p }} {% if not forloop.last %} | {% endif %} {% endfor %} ]
{% endfor %}

ChromeOS Performance Overview: {{ branch }}-{{ platform }}

(old-style graphs)

{# Create HTML for the perf graphs table. #} {% for test in tests %} {% if test.has_data %} {% else %} {% endif %} {% cycle '' '' '' %} {% endfor %}
{% endblock %}