blob: 2238ca4a553b2aca8fcee4112e3c5ed4a4234d3d (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<div class="container-fluid common-main-container">
<div class="results-table" style="margin-top: 30px; overflow: scroll;">
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Create Date</th>
<th>Owner</th>
<th>ONAP version</th>
<th>Company Name</th>
<th>Company logo</th>
<th>Company Website</th>
<th>Approve date</th>
<th>Test ID</th>
<th>xNF Version</th>
<th>xNF Name</th>
<th>xNF Type</th>
<th>xNF Description</th>
<th>xNF Id</th>
<th>xNF Model Language</th>
<th>xNF Checksum (SHA256)</th>
<th>Test Period</th>
<th>Location</th>
<th>Operation</th>
</tr>
</thead>
<script type="text/ng-template" id="product.tpl.html">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input type="text" value="{{app.product_spec}}">
</div>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" value="{{app.product_documentation}}">
</div>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-map-marker"></i></span>
<input type="text" value="{{app.product_categories | category}}">
</div>
</script>
<script type="text/ng-template" id="lab.tpl.html">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input type="text" value="{{app.lab_name}}">
</div>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" value="{{app.lab_email}}">
</div>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-map-marker"></i></span>
<input type="text" value="{{app.lab_address}}">
</div>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-phone"></i></span>
<input type="text" value="{{app.lab_phone}}">
</div>
</script>
<tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
<tr ng-if="results.status != 'review'" ng-repeat="app in ctrl.applications">
<td>{{ app.creation_date | limitTo: 10 }}</td>
<td>{{ app.owner }}</td>
<td>{{ app.onap_version }}</td>
<td>{{ app.company_name }}</td>
<td>{{ app.company_logo }}</td>
<td>{{ app.company_website }}</td>
<td>{{ app.approve_date | limitTo: 10 }}</td>
<td>{{ app.test_id }}</td>
<td>{{ app.xnf_version }}</td>
<td>{{ app.xnf_name }}</td>
<td>{{ app.xnf_type }}</td>
<td>{{ app.xnf_description }}</td>
<td>{{ app.xnfd_id }}</td>
<td>{{ app.xnfd_model_lang }}</td>
<td>{{ app.xnf_checksum }}</td>
<td>{{ app.xnf_test_period }}</td>
<td>
<span popover-enable="app.lab_location != 'internal'" uib-popover-template="ctrl.lab_tpl"
popover-title="Lab Info" popover-placement="top"
popover-trigger="mouseenter">{{ app.lab_location | labLocation}}</span>
<i ng-if="app.lab_location != 'internal'" class="glyphicon glyphicon-info-sign opnfv-blue"></i>
</td>
<td>
<a ng-click="ctrl.toggleApproveApp(app._id, 'true')" class="badge badge-info"
ng-if="app.approved == 'false'"
data-toggle="tooltip" title="Approve Application">
<i class="glyphicon glyphicon-ok" ></i>
</a>
<a ng-click="ctrl.deleteApp(app._id)" class="badge badge-info"
data-toggle="tooltip" title="Delete Application">
<i class="glyphicon glyphicon-remove" ></i>
</a>
</td>
</tr>
</tbody>
</table>
<div class="pages">
<uib-pagination
total-items="ctrl.totalItems"
ng-model="ctrl.currentPage"
items-per-page="ctrl.itemsPerPage"
max-size="ctrl.maxSize"
class="pagination-sm"
boundary-links="true"
rotate="false"
num-pages="ctrl.numPages"
ng-change="ctrl.updatePage()">
</uib-pagination>
</div>
</div>
</div>
|