Make image manager
This commit is contained in:
parent
c8314a0089
commit
f01cfa2ec7
1 changed files with 15 additions and 4 deletions
|
@ -4,6 +4,14 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<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">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -15,13 +23,16 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="image in images">
|
<tr ng-repeat="image in images">
|
||||||
<td>{{ image.name }}</td>
|
<td>{{ image.name }}</td>
|
||||||
<td>000</td>
|
<td>{{ (image.size / 1048576).toFixed(2) }} MB</td>
|
||||||
<td>actions</td>
|
<td><button type="button" class="btn btn-danger">Remove</button></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue