This commit is contained in:
manzerbredes 2016-03-16 15:36:12 +01:00
parent 1061d8c85e
commit 004dc2acdd
2 changed files with 22 additions and 4 deletions

View file

@ -1,10 +1,25 @@
<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"> <table class="table table-hover">
{{image.name}} <thead>
</div> <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>

View file

@ -0,0 +1,3 @@
<?php
phpinfo();
?>