aboutsummaryrefslogtreecommitdiff
path: root/app/dashboard/templates/other-bisect-compare-content.html
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2015-01-27 18:28:32 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2015-01-27 18:28:32 +0100
commit642aa230d871a1e216ae9563fdcf62005d5f8ad3 (patch)
tree1916aa88175d1d7aee7a0e5427a5720a6d8adcc5 /app/dashboard/templates/other-bisect-compare-content.html
parent98d1fa45005b2212fa42aecd52676a4af9c1ac5e (diff)
Add new template for bisect comparison.
Change-Id: I57a28a508a369b9e1a12a88f37619a0533f52076
Diffstat (limited to 'app/dashboard/templates/other-bisect-compare-content.html')
-rw-r--r--app/dashboard/templates/other-bisect-compare-content.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/dashboard/templates/other-bisect-compare-content.html b/app/dashboard/templates/other-bisect-compare-content.html
new file mode 100644
index 0000000..164ff5f
--- /dev/null
+++ b/app/dashboard/templates/other-bisect-compare-content.html
@@ -0,0 +1,29 @@
+<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
+ <div id="bisect-compare-loading-div" class="pull-center">
+ <i class="fa fa-cog fa-spin fa-2x"></i>&nbsp;
+ <span id="bisect-compare-loading-content">retrieving bisect data compared with mainline&hellip;</span>
+ </div>
+ <div id="bisect-compare-content" class="hidden">
+ <p>
+ The comparison with the &#171;mainline&#187; tree is based on the boot
+ reports with the same board, lab name and defconfig values.
+ </p>
+ {%- if is_mobile %}
+ <div class="table-responsive" id="table-div">
+ {%- else %}
+ <div class="table" id="table-div">
+ {%- endif %}
+ <table id="bisect-compare-table" class="bisect-table table" summary="Bisect table">
+ <thead>
+ <tr>
+ <th class="col-xs-1 col-sm-1 col-md-1 col-lg-1"></th>
+ <th class="col-xs-3 col-sm-3 col-md-3 col-lg-3">Bad</th>
+ <th class="col-xs-3 col-sm-3 col-md-3 col-lg-3">Unknown</th>
+ <th class="col-xs-3 col-sm-3 col-md-3 col-lg-3">Good</th>
+ </tr>
+ </thead>
+ <tbody id="bisect-compare-table-body"></tbody>
+ </table>
+ </div>
+ </div>
+</div>