This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-07 15:05:56 +02:00
|
|
|
<h1>{{obj.title}} <img class="icon" src="/api/good/availablity/{{obj.id}}"/></h1>
|
|
|
|
<table class="ui table very basic">
|
|
|
|
<tr>
|
|
|
|
<td>Count</td>
|
|
|
|
<td>{{list.length}}</td>
|
|
|
|
</tr>
|
2017-05-03 08:56:35 +02:00
|
|
|
</table>
|
2017-04-07 15:05:56 +02:00
|
|
|
<table class="ui table list" ng-if="list.length > 0">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="item in list">
|
|
|
|
<td>{{item.id}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|