forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.html
76 lines (76 loc) · 3.41 KB
/
images.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
<div class="middle">
<div class="middle-header header-toolbar">
<div class="container-fluid">
<div class="page-header page-header-bleed-right page-header-bleed-left">
<h1>
Image Streams
<span class="page-header-link">
<a ng-href="{{'image-streams' | helpLink}}" target="_blank">
Learn More <i class="fa fa-external-link" aria-hidden="true"></i>
</a>
</span>
</h1>
</div>
<div ng-if="(imageStreams | hashSize) > 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="(imageStreams | hashSize) == 0">
<p ng-if="!imageStreamsLoaded">
Loading...
</p>
<div ng-if="imageStreamsLoaded" class="empty-state-message text-center">
<div ng-if="!filterWithZeroResults">
<h2>No image streams.</h2>
<p>No image streams have been added to project {{projectName}}.</p>
</div>
<div ng-if="filterWithZeroResults">
<h2>The filter is hiding all image streams. <a href="" ng-click="clearFilter()" role="button" class="nowrap">Clear Filter</a></h2>
</div>
</div>
</div>
<table ng-if="(imageStreams | hashSize) > 0" class="table table-bordered table-mobile table-layout-fixed">
<colgroup>
<col class="col-sm-3">
<col class="col-sm-5">
<col class="col-sm-2">
<col class="col-sm-2">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Docker Repo</th>
<th>Tags</th>
<th>Updated</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="imageStream in imageStreams | orderObjectsByDate : true">
<td data-title="Name"><a href="{{imageStream | navigateResourceURL}}">{{imageStream.metadata.name}}</a></td>
<td data-title="Docker Repo">
<span ng-if="!imageStream.status.dockerImageRepository && !imageStream.spec.dockerImageRepository"><em>unknown</em></span>
<span ng-if="imageStream.status.dockerImageRepository || imageStream.spec.dockerImageRepository">{{imageStream.status.dockerImageRepository || imageStream.spec.dockerImageRepository}}</span>
</td>
<td data-title="Tags">
<span ng-if="!imageStream.status.tags.length"><em>none</em></span>
<span ng-repeat="tag in imageStream.status.tags | limitTo: 4">{{tag.tag}}<span ng-if="!$last">,
</span></span><span ng-if="imageStream.status.tags.length === 5">,
{{imageStream.status.tags[4].tag}}</span><span ng-if="imageStream.status.tags.length > 5">,
and {{imageStream.status.tags.length - 4}} others</span>
</td>
<td data-title="Updated"><span am-time-ago="imageStream | imageStreamLastUpdated"></span></td>
</tr>
</tbody>
</table>
</div><!-- /col-* -->
</div>
</div>
</div><!-- /middle-content -->
</div>