summaryrefslogtreecommitdiff
path: root/client/partials/image/image.html
diff options
context:
space:
mode:
authorroot <root@kabir-PC>2016-03-23 11:31:51 +0100
committerroot <root@kabir-PC>2016-03-23 11:31:51 +0100
commita26989103d70fb0dd3ff6834de107cae246778c3 (patch)
tree0f243c83b790ffb57f19261fc2a509131f6776ce /client/partials/image/image.html
parent1342db60283cb61a1c3810993575d35b9fb33ac0 (diff)
parent6e78d76f887d1149ea85bfb06db7ee7ad7435f5a (diff)
Merge branch 'develop' of https://github.com/manzerbredes/istic-openstack into develop
Diffstat (limited to 'client/partials/image/image.html')
-rw-r--r--client/partials/image/image.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/client/partials/image/image.html b/client/partials/image/image.html
new file mode 100644
index 0000000..886a11d
--- /dev/null
+++ b/client/partials/image/image.html
@@ -0,0 +1,38 @@
+
+
+<div class="panel panel-default" ng-controller="imageCtrl">
+ <div class="panel-heading">
+ Image Manager
+ </div>
+ <div class="panel-body">
+
+
+ <div class="btn-group btn-group-md" role="group" aria-label="...">
+ <button type="button" class="btn btn-default" data-toggle="modal" data-target="#uploadImageModal"">Upload</button>
+ <button type="button" class="btn btn-default">Download</button>
+ </div>
+ <p></p>
+ <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>{{ (image.size / 1048576).toFixed(2) }} MB</td>
+ <td><button type="button" class="btn btn-danger">Remove</button></td>
+ </tr>
+
+ </tbody>
+ </table>
+
+
+
+
+
+ </div>
+</div>