portainer/partials/containers.html

29 lines
977 B
HTML
Raw Normal View History

2013-06-09 00:12:14 +00:00
<h2>Containers:</h2>
2013-06-09 23:56:54 +00:00
<div style="float:right;">
<input type="checkbox" ng-model="displayAll" ng-click="toggleGetAll()"/> Display All
</div>
2013-06-09 00:12:14 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Image</th>
<th>Command</th>
<th>Created</th>
2013-06-19 21:18:54 +00:00
<th>Size</th>
2013-06-09 00:12:14 +00:00
<th>Status</th>
</tr>
</thead>
<tbody>
2013-06-09 23:56:54 +00:00
<tr ng-repeat="container in containers|orderBy:predicate">
2013-06-09 00:12:14 +00:00
<td><a href="/#/containers/{{ container.Id }}/">{{ container.Id|truncate:10}}</a></td>
2013-06-09 23:56:54 +00:00
<td><a href="/#/images/{{ container.Image }}/">{{ container.Image }}</a></td>
<td>{{ container.Command|truncate:40 }}</td>
<td>{{ container.Created|getdate }}</td>
2013-06-19 21:18:54 +00:00
<td>{{ container.SizeRw|humansize }}</td>
2013-06-09 00:12:14 +00:00
<td><span class="label label-{{ container.Status|statusbadge }}">{{ container.Status }}</span></td>
</tr>
</tbody>
</table>