forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-instances.html
95 lines (94 loc) · 4.48 KB
/
service-instances.html
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
<project-header class="top-header"></project-header>
<project-page>
<!-- Middle section -->
<div class="middle-section">
<div class="middle-container">
<div class="middle-header header-toolbar">
<div class="container-fluid">
<div class="page-header page-header-bleed-right page-header-bleed-left">
<h1>
Provisioned Services
</h1>
</div>
<div ng-if="(serviceInstances | size) > 0 || filterWithZeroResults" class="data-toolbar">
<div class="data-toolbar-filter">
<project-filter></project-filter>
</div>
</div>
</div>
</div><!-- /middle-header-->
<div class="middle-content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div ng-if="(serviceInstances | hashSize) == 0">
<p ng-if="!serviceInstancesLoaded">
Loading...
</p>
<div ng-if="serviceInstancesLoaded" class="empty-state-message text-center">
<div ng-if="!filterWithZeroResults">
<h2>No provisioned services.</h2>
<p>No provisioned services have been added to project {{projectName}}.</p>
</div>
<div ng-if="filterWithZeroResults">
<h2>The filter is hiding all provisioned services. <a href="" ng-click="clearFilter()" role="button" class="nowrap">Clear Filter</a></h2>
</div>
</div>
</div>
<table ng-if="(serviceInstances | size) > 0" class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-3">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Instance Name</th>
<th>Status</th>
<th>Created</th>
<th>Bindings</th>
</tr>
</thead>
<tbody ng-if="(serviceInstances | size) > 0">
<tr ng-repeat="serviceInstance in serviceInstances track by (serviceInstance | uid)">
<td data-title="Name">
<a ng-href="{{serviceInstance | navigateResourceURL}}">{{serviceInstance | serviceInstanceDisplayName : getServiceClass(serviceInstance)}}</a>
</td>
<td data-title="Instance Name"><span>{{serviceInstance.metadata.name}}</span></td>
<td data-title="Status">
<div row class="status">
<status-icon status="serviceInstance | serviceInstanceStatus" disable-animation></status-icon>
<span flex>{{serviceInstance | serviceInstanceStatus | sentenceCase}}</span>
</div>
</td>
<td data-title="Created">
<span am-time-ago="serviceInstance.metadata.creationTimestamp" am-without-suffix="true"></span> ago
</td>
<td data-title="Bindings">
<div ng-if="bindingsByInstanceRef[serviceInstance.metadata.name].length">
<p ng-if="firstBinding = bindingsByInstanceRef[serviceInstance.metadata.name][0]">
<span ng-if="application = applicationsByBinding[firstBinding.metadata.name][0]">
{{application.metadata.name}}
</span>
<span ng-if="!application">
{{firstBinding.metadata.name}}
</span>
<ng-pluralize count="bindingsByInstanceRef[serviceInstance.metadata.name].length"
when="{'0':'', '1':'', '2':'and {} other', 'other':'and {} others'}"
offset="1">
</ng-pluralize>
</p>
</div>
<div ng-if="!bindingsByInstanceRef[serviceInstance.metadata.name].length">
No bindings
</div>
</td>
</tr>
</tbody>
</table>
</div><!-- /col-* -->
</div>
</div>
</div><!-- /middle-content -->
</div><!-- /middle-container -->
</div><!-- /middle-section -->
</project-page>