mirror of https://github.com/portainer/portainer
27 lines
897 B
HTML
27 lines
897 B
HTML
|
|
<h2>Containers:</h2>
|
|
|
|
<div style="float:right;">
|
|
<input type="checkbox" ng-model="displayAll" ng-click="toggleGetAll()"/> Display All
|
|
</div>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Image</th>
|
|
<th>Command</th>
|
|
<th>Created</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="container in containers|orderBy:predicate">
|
|
<td><a href="/#/containers/{{ container.Id }}/">{{ container.Id|truncate:10}}</a></td>
|
|
<td><a href="/#/images/{{ container.Image }}/">{{ container.Image }}</a></td>
|
|
<td>{{ container.Command|truncate:40 }}</td>
|
|
<td>{{ container.Created|getdate }}</td>
|
|
<td><span class="label label-{{ container.Status|statusbadge }}">{{ container.Status }}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|