diff options
Diffstat (limited to 'client/partials/image/image.html')
| -rw-r--r-- | client/partials/image/image.html | 23 |
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> |
