aboutsummaryrefslogtreecommitdiff
path: root/static/testreporter/templates/report.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/testreporter/templates/report.html')
-rw-r--r--static/testreporter/templates/report.html22
1 files changed, 19 insertions, 3 deletions
diff --git a/static/testreporter/templates/report.html b/static/testreporter/templates/report.html
index d39a35c..38c7e6f 100644
--- a/static/testreporter/templates/report.html
+++ b/static/testreporter/templates/report.html
@@ -1,6 +1,5 @@
<div class="row">
<div class="col-lg-12">
- <h1> Bulshit! </h1>
<h2>Builds</h2>
<table class="table">
@@ -50,7 +49,6 @@
<hr/>
<h2>Manual Testruns</h2>
-some bulshit
<table class="table">
<thead>
<tr>
@@ -62,11 +60,29 @@ some bulshit
</thead>
<tbody>
<tr ng-repeat="testrun in data.testruns">
- <td><span ng-click="testRunUrl(testrun.id); " class="text-primary">//testrun.test_plan.name// (//testrun.id//)</span></td>
+ <td><span ng-click="testRunUrl(testrun.id); " class="text-primary" style="pointer: hand">//testrun.test_plan.name// (//testrun.id//)</span></td>
<td ng-repeat="name in testrun.result">// name[1] //</td>
</tr>
</tbody>
</table>
+ <h2>Known Issues:</h2>
+ <table class="table">
+ <thead>
+ <tr>
+ <th>Bug Tracker</th>
+ <th>Title</th>
+ <th>Status</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr ng-repeat="bug in bugs">
+ <td>// bug.tracker // (<a href="//bug.web_link//">// bug.alias //</a>)</td>
+ <td><a href="//bug.web_link//">// bug.summary //</td>
+ <td>// bug.status // | // bug.severity //</td>
+ </tr>
+ </tbody>
+ </table>
+
</div>
</div>