blob: 2921bd920418790dddeb88ca769224c116bcc6e1 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<legend>Project</legend>
<div class="row" style="margin-bottom:24px;"></div>
<div class="tabbable tabs-below" ng-init="selectedTab = 1;">
<ul class="nav nav-tabs nav-justified" style="width:30%">
<li ng-class="{active: selectedTab == 1}">
<a ng-click="selectedTab = 1;">Overview</a>
</li>
<li ng-class="{active: selectedTab == 2}">
<a ng-click="selectedTab = 2;">Test Cases</a>
</li>
</ul>
<div class="tab-content" ng-show="selectedTab == 1">
<div style="padding-right:0px; margin-top:20px" >
<div class="table-responsive">
<table class="table" ng-data="ctrl.data.pods">
<tbody>
<tr style="padding:9px">
<td class="podsTableTd">Id :</td>
<td class="podsTableLeftTd">{{ctrl.data._id}}</td>
</tr>
<tr style="padding:9px">
<td class="podsTableTd">Name :</td>
<td width="90%" class="podsTableLeftTd">{{ctrl.data.name}}</td>
</tr>
<tr style="padding:9px">
<td class="podsTableTd">Owner :</td>
<td width="90%" class="podsTableLeftTd">{{ctrl.data.owner}}</td>
</tr>
<tr style="padding:9px">
<td class="podsTableTd">Created at :</td>
<td width="90%" class="podsTableLeftTd">{{ctrl.data['creation_date']}}</td>
</tr>
<tr style="padding:9px">
<td class="podsTableTd">Description :</td>
<td width="90%" class="podsTableLeftTd">{{ctrl.data.description}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="tab-content" ng-show="selectedTab == 2">
<div ng-include src="'testapi-ui/components/projects/project/testCases/testCases.html'"></div>
</div>
</div>
<div ng-show="ctrl.showError" class="alert alert-danger col-md-9" role="alert" style="margin-top:0px">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
{{ctrl.error}}
</div>
<div ng-show="ctrl.showSuccess" class="alert alert-success col-md-9" role="alert" style="margin-top:0px">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
Update Success
</div>
|