2013-06-19 01:21:27 +00:00
|
|
|
<div ng-include="template" ng-controller="BuilderController"></div>
|
2015-06-05 15:21:52 +00:00
|
|
|
<div ng-include="template" ng-controller="PullImageController"></div>
|
2013-06-19 01:21:27 +00:00
|
|
|
|
2013-06-09 23:11:40 +00:00
|
|
|
<h2>Images:</h2>
|
|
|
|
|
2015-09-03 11:37:23 +00:00
|
|
|
<div>
|
|
|
|
<ul class="nav nav-pills pull-left">
|
|
|
|
<li class="dropdown">
|
|
|
|
<a class="dropdown-toggle" id="drop4" role="button" data-toggle="dropdown" data-target="#">Actions <b class="caret"></b></a>
|
|
|
|
<ul id="menu1" class="dropdown-menu" role="menu" aria-labelledby="drop4">
|
|
|
|
<li><a tabindex="-1" href="" ng-click="removeAction()">Remove</a></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<li><a data-toggle="modal" data-target="#pull-modal" href="">Pull</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="pull-right form-inline">
|
|
|
|
<input type="text" class="form-control" id="filter" placeholder="Filter" ng-model="filter"/> <label class="sr-only" for="filter">Filter</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-06-09 23:11:40 +00:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2016-03-19 22:45:45 +00:00
|
|
|
<th><label><input type="checkbox" ng-model="toggle" ng-change="toggleSelectAll()" /> Select</label></th>
|
|
|
|
<th>
|
|
|
|
<a href="#/images/" ng-click="order('Id')">
|
|
|
|
Id
|
|
|
|
<span ng-show="sortType == 'Id' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Id' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a href="#/images/" ng-click="order('RepoTags')">
|
|
|
|
Repository
|
|
|
|
<span ng-show="sortType == 'RepoTags' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'RepoTags' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a href="#/images/" ng-click="order('VirtualSize')">
|
|
|
|
VirtualSize
|
|
|
|
<span ng-show="sortType == 'VirtualSize' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'VirtualSize' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<a href="#/images/" ng-click="order('Created')">
|
|
|
|
Created
|
|
|
|
<span ng-show="sortType == 'Created' && !sortReverse" class="glyphicon glyphicon-chevron-down"></span>
|
|
|
|
<span ng-show="sortType == 'Created' && sortReverse" class="glyphicon glyphicon-chevron-up"></span>
|
|
|
|
</a>
|
|
|
|
</th>
|
2013-06-09 23:11:40 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2016-03-25 14:29:39 +00:00
|
|
|
<tr ng-repeat="image in (filteredImages = (images | filter:filter | orderBy:sortType:sortReverse))">
|
2013-06-19 04:08:17 +00:00
|
|
|
<td><input type="checkbox" ng-model="image.Checked" /></td>
|
2014-07-25 15:48:42 +00:00
|
|
|
<td><a href="#/images/{{ image.Id }}/?tag={{ image|repotag }}">{{ image.Id|truncate:20}}</a></td>
|
2013-12-13 18:26:58 +00:00
|
|
|
<td>{{ image|repotag }}</td>
|
2014-08-12 06:58:05 +00:00
|
|
|
<td>{{ image.VirtualSize|humansize }}</td>
|
2013-06-09 23:11:40 +00:00
|
|
|
<td>{{ image.Created|getdate }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|