summaryrefslogtreecommitdiff
path: root/client/partials/image/image.html
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-16 16:05:24 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-16 16:05:24 +0100
commitf01cfa2ec71672e2b178c06f87037d8b793ddd67 (patch)
treee4fc64da99a5f5b27cfb00d4110f028fb5dc268a /client/partials/image/image.html
parentc8314a0089a46920e7c7d001611c94600e0a0882 (diff)
Make image manager
Diffstat (limited to 'client/partials/image/image.html')
-rw-r--r--client/partials/image/image.html19
1 files changed, 15 insertions, 4 deletions
diff --git a/client/partials/image/image.html b/client/partials/image/image.html
index 471ce3c..c90cbe0 100644
--- a/client/partials/image/image.html
+++ b/client/partials/image/image.html
@@ -4,6 +4,14 @@
</div>
<div class="panel-body">
+
+
+
+ <div class="btn-group btn-group-md" role="group" aria-label="...">
+ <button type="button" class="btn btn-default">Upload</button>
+ <button type="button" class="btn btn-default">Download</button>
+ </div>
+ <p></p>
<table class="table table-hover">
<thead>
<tr>
@@ -15,13 +23,16 @@
<tbody>
<tr ng-repeat="image in images">
<td>{{ image.name }}</td>
- <td>000</td>
- <td>actions</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>