aboutsummaryrefslogtreecommitdiff
path: root/dashboard_app/templates/dashboard_app/pmqa_filter.html
blob: 2f44b85b675237d9d96c6633f69617b879a55989 (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
32
{% extends "layouts/content-bootstrap.html" %}
{% load i18n %}
{% load django_tables2 %}

{% block styles %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}dashboard_app/css/filter-detail.css"/>
{% endblock %}

{% block content %}

<h1>PMQA results for {{ bundle_stream }} on {{ device_type }}</h1>
{% render_table filter_table %}

<p>
  <button id="compare-button">Compare builds</button>
  <span id="first-prompt" style="display:none">
    Click a build to compare.
  </span>
  <span id="second-prompt" style="display:none">
    Click build to compare with build <span id="p2-build">XXX</span>.
  </span>
  <span id="third-prompt" style="display:none">
    Click <a href="#">here</a> to compare with build <span id="p3-build-1">XXX</span> with build <span id="p3-build-2">XXX</span>.
  </span>
</p>

{% endblock %}

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