portainer/partials/images.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2013-06-09 23:11:40 +00:00
2013-06-19 01:21:27 +00:00
<div ng-include="template" ng-controller="BuilderController"></div>
2013-06-09 23:11:40 +00:00
<h2>Images:</h2>
2013-06-19 04:08:17 +00:00
<ul class="nav nav-pills">
<li class="dropdown">
<a class="dropdown-toggle" id="drop4" role="button" data-toggle="dropdown" href="#">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>
</ul>
2013-06-09 23:11:40 +00:00
<table class="table table-striped">
<thead>
<tr>
2013-06-20 03:10:08 +00:00
<th><input type="checkbox" ng-model="toggle" ng-click="toggleSelectAll()" /> Action</th>
2013-06-09 23:11:40 +00:00
<th>Id</th>
<th>Repository</th>
<th>Created</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="image in images | orderBy:predicate">
2013-06-19 04:08:17 +00:00
<td><input type="checkbox" ng-model="image.Checked" /></td>
2013-09-02 23:54:53 +00:00
<td><a href="/#/images/{{ image.Id }}/?tag={{ image.Repository }}:{{ image.Tag }}">{{ image.Id|truncate:20}}</a></td>
<td>{{ image.Repository }}:{{ image.Tag }}</td>
2013-06-09 23:11:40 +00:00
<td>{{ image.Created|getdate }}</td>
</tr>
</tbody>
</table>