summaryrefslogtreecommitdiff
path: root/client/partials/image/image.html
blob: 471ce3cc52144d3f37c1e0100bc2f7072089a073 (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
26
27
 <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>