summaryrefslogtreecommitdiff
path: root/client/partials/image/image.html
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-16 15:36:12 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-16 15:36:12 +0100
commit004dc2acdd2dea2dff8af670f855c40b54f38f4b (patch)
tree031ca977eca8cc2faeb684a52bc0da580b1849f1 /client/partials/image/image.html
parent1061d8c85e5b5ce7c1bf3e79685e9e19f92f7353 (diff)
Test
Diffstat (limited to 'client/partials/image/image.html')
-rw-r--r--client/partials/image/image.html23
1 files changed, 19 insertions, 4 deletions
diff --git a/client/partials/image/image.html b/client/partials/image/image.html
index 8af8af5..620eda8 100644
--- a/client/partials/image/image.html
+++ b/client/partials/image/image.html
@@ -1,10 +1,25 @@
<div class="panel panel-default" ng-controller="imageCtrl">
<div class="panel-heading">
- Images disponibles
+ Image Manager
</div>
<div class="panel-body">
- <div ng-repeat="image in images">
- {{image.name}}
- </div>
+ <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>