Test
This commit is contained in:
parent
1061d8c85e
commit
004dc2acdd
2 changed files with 22 additions and 4 deletions
|
@ -1,10 +1,25 @@
|
|||
<div class="panel panel-default" ng-controller="imageCtrl">
|
||||
<div class="panel-heading">
|
||||
Images disponibles
|
||||
Image Manager
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div ng-repeat="image in images">
|
||||
{{image.name}}
|
||||
</div>
|
||||
<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>000</td>
|
||||
<td>actions</td>
|
||||
</tr>
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
phpinfo();
|
||||
?>
|
Loading…
Add table
Reference in a new issue