diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-16 15:38:43 +0100 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-16 15:38:43 +0100 |
| commit | c8314a0089a46920e7c7d001611c94600e0a0882 (patch) | |
| tree | d29e1aa07fca5d9b2680399ee782510a21cdf354 /client/partials/image/image.html | |
| parent | 6c65d02fbd111701dac5f0a78b78b8e0dda52ef5 (diff) | |
| parent | 004dc2acdd2dea2dff8af670f855c40b54f38f4b (diff) | |
Test
Diffstat (limited to 'client/partials/image/image.html')
| -rw-r--r-- | client/partials/image/image.html | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/client/partials/image/image.html b/client/partials/image/image.html index 3f597fb..471ce3c 100644 --- a/client/partials/image/image.html +++ b/client/partials/image/image.html @@ -1,17 +1,27 @@ <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> - <br /> - <input name="myFile" type="file" /> - <br /> - <button type="button" ng-click="doUpload()" class="btn btn-primary">Upload</button> + <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> |
