aboutsummaryrefslogtreecommitdiff
path: root/static/testreporter/templates/report_private.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/testreporter/templates/report_private.html')
-rw-r--r--static/testreporter/templates/report_private.html24
1 files changed, 17 insertions, 7 deletions
diff --git a/static/testreporter/templates/report_private.html b/static/testreporter/templates/report_private.html
index 1c833d9..6ec1b5d 100644
--- a/static/testreporter/templates/report_private.html
+++ b/static/testreporter/templates/report_private.html
@@ -1,13 +1,18 @@
-<div class="row">
+<div ng-hide="!tag_progress" class="row ng-hide">
+ <div class="col-lg-12">
+ <h1 class="center-block"><span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> Loading...</h1>
+ </div>
+</div>
+<div ng-hide="tag_progress" class="row ng-hide">
<div class="col-lg-12">
+ <form role="form" ng-submit="submit()" >
<div class="page-header">
- <h1>Report: <small>"//data.tag.name//"</small></h1>
+ <label>Tag name:</label>
+ <span class="help-inline" ng-bind="error.0"></span>
+ <input class="form-control" ng-model="tag.name" />
</div>
-
- <form role="form" ng-submit="submit()" >
-
<div class="form-group" ng-class="{'has-error':error.description}">
<label>Description:</label>
<span class="help-inline" ng-bind="error.description"></span>
@@ -17,10 +22,15 @@
<button type="submit" class="btn btn-default btn-sm pull-right input-sm">
Save
</button>
-
+
</form>
</div>
</div>
-<div ng-include="'/static/testreporter/templates/report.html'"></div>
+<div ng-hide="!data_progress" class="row ng-hide">
+ <div class="col-lg-12">
+ <h1 class="center-block"><span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> Loading...</h1>
+ </div>
+</div>
+<div ng-hide="data_progress" ng-include="'/static/testreporter/templates/report.html'"></div>