Test
This commit is contained in:
commit
c8314a0089
2 changed files with 21 additions and 8 deletions
|
@ -1,17 +1,27 @@
|
||||||
<div class="panel panel-default" ng-controller="imageCtrl">
|
<div class="panel panel-default" ng-controller="imageCtrl">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
Images disponibles
|
Image Manager
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div ng-repeat="image in images">
|
|
||||||
{{image.name}}
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
<input name="myFile" type="file" />
|
<table class="table table-hover">
|
||||||
<br />
|
<thead>
|
||||||
<button type="button" ng-click="doUpload()" class="btn btn-primary">Upload</button>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<?php
|
||||||
|
phpinfo();
|
||||||
|
?>
|
Loading…
Add table
Reference in a new issue