blob: 620eda8f0e2418c2ac45f7c67ffdd7026206bbd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<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>
|