aboutsummaryrefslogtreecommitdiff
path: root/static/testreporter/templates/report_private.html
blob: 6ec1b5df0b9466850113d0063ced9f4f371793c4 (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
33
34
35
36
<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">
	  <label>Tag name:</label>
	  <span class="help-inline" ng-bind="error.0"></span>
      <input class="form-control" ng-model="tag.name" />
    </div>

      <div class="form-group" ng-class="{'has-error':error.description}">
	<label>Description:</label>
	<span class="help-inline" ng-bind="error.description"></span>
	<textarea class="form-control" ng-model="tag.description" rows="10"></textarea>
      </div>

      <button type="submit" class="btn btn-default btn-sm pull-right input-sm">
	Save
      </button>

    </form>

  </div>
</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>