{% extends "layout.html" %} {% import "utils.html" as utils %} {% import "local.html" as local %} {% set db = request.get_db() %} {% set components = [(testsuite_name, v4_url_for(".v4_recent_activity")), ("Tracking", v4_url_for(".v4_regression_list"))] %} {% block title %}Regression Details{% endblock %} {% block head %} {% endblock %} {% block javascript %} var g = {}; var test_suite_name = "{{ testsuite_name }}"; var db_name = "{{ request.view_args.get('db_name','') }}"; var max_samples = {{ request.args.get('limit', 350) }}; var changes = [ {% for form_change in form.field_changes%} {% set fc = changes[loop.index -1] %} {% set fc_ri_field_index = ts.get_field_index(fc.ri.field) %} {"url": "{{fc.ri.machine.id}}/{{fc.ri.test.id}}/{{fc_ri_field_index}}", "start": "{{fc.ri.start_order.as_ordered_string()}}", "end": "{{fc.ri.end_order.as_ordered_string()}}" }, {% endfor %} ]; {% endblock %} {% block body %}