aboutsummaryrefslogtreecommitdiff
path: root/dashboard_app/templates/dashboard_app/filter_compare_matches.html
blob: f52097668fd81646cfc35dc69ae9ac1b2a2abe32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "layouts/content-bootstrap.html" %}

{% load django_tables2 %}

{% block styles %}
<style>
  th.orderable.sortable a {
    color: rgb(0, 136, 204);
    text-decoration: underline;
  }
</style>
{% endblock %}

{% block content %}
{% for trinfo in test_run_info %}
<h3>{{ trinfo.key }} results</h3>
{% if trinfo.only %}
<p style="text-align: {{ trinfo.only }}">
  Results were only present in <a href="{{ trinfo.tr.get_absolute_url }}">build {{ trinfo.tag }}</a>.
</p>
{% elif trinfo.table %}
{% render_table trinfo.table %}
{% else %}
<p>No difference in {{ trinfo.key }} results{% if trinfo.cases %} for {{ trinfo.cases }}{% endif %}.</p>
{% endif %}
{% endfor %}
{% endblock %}

{% block scripts %}
<script type="text/javascript" src="{{ STATIC_URL }}lava_scheduler_app/js/tables.min.js"></script>
{% endblock %}