istic-openstack/client/partials/image/image.html

26 lines
470 B
HTML
Raw Normal View History

2016-03-06 15:04:47 +01:00
<div class="panel panel-default" ng-controller="imageCtrl">
2016-01-24 19:19:32 +01:00
<div class="panel-heading">
2016-03-16 15:36:12 +01:00
Image Manager
2016-01-24 19:19:32 +01:00
</div>
<div class="panel-body">
2016-03-16 15:36:12 +01:00
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="image in images">
<td>{{ image.name }}</td>
<td>000</td>
<td>actions</td>
</tr>
</tbody>
</table>
2016-01-24 19:19:32 +01:00
</div>
</div>