{% extends "base.html" %} {% block title %} {% if hasattr(team, "name") %} {{ team.name }} - Wight v{{ version }} {% else %} Team {{ team }} not found - Wight v{{ version }} {% end %} {% end %} {% block contents %}
{% if hasattr(team, "name") %}

{{ project }}

Trend results for {{ full_name }}

This report details the trend results for the last {{ len(results) }} bench runs for the {{ project }} project, running the {{ full_name }} test.

Apdex

apdex ranges from 0.0 to 1.0, with 1.0 being a perfect score

Pages per second

Average response time

{% for index, result in enumerate(results) %} {{ "%02d" % (index + 1) }} - Report for {{ format_date(result["created"]) }} {% end %}

Report generated at {{ report_date }} - Wight v{{ version }}

{% else %}

No team found

We are unable to find a team with name {{ team }}.

{% end %}
{% end %}