istic-openstack/client/partials/image/image.html
manzerbredes 004dc2acdd Test
2016-03-16 15:36:12 +01:00

25 lines
470 B
HTML

<div class="panel panel-default" ng-controller="imageCtrl">
<div class="panel-heading">
Image Manager
</div>
<div class="panel-body">
<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>
</div>
</div>