1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00
portainer/partials/images.html

29 lines
748 B
HTML
Raw Normal View History

2013-06-09 14:11:40 -09:00
2013-06-18 16:21:27 -09:00
<div ng-include="template" ng-controller="BuilderController"></div>
2013-06-09 14:11:40 -09:00
<h2>Images:</h2>
2013-06-18 16:21:27 -09:00
<div id="response" class="alert alert-{{ alertClass }}">
{{ response }}
</div>
<a href="" ng-click="showBuilder()">Build Image</a>
2013-06-09 14:11:40 -09:00
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Tag</th>
<th>Repository</th>
<th>Created</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="image in images | orderBy:predicate">
<td><a href="/#/images/{{ image.Id }}/">{{ image.Id|truncate:10}}</a></td>
<td>{{ image.Tag }}</td>
<td>{{ image.Repository }}</td>
<td>{{ image.Created|getdate }}</td>
</tr>
</tbody>
</table>