Begin ...

This commit is contained in:
Loic GUEGAN 2016-04-17 20:11:46 +02:00
parent bb1598713c
commit a481b727d9
2 changed files with 94 additions and 24 deletions
client/partials/image

View file

@ -6,33 +6,36 @@
</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 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-primary">Edit</button>
<button type="button" class="btn btn-danger">Remove</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>