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
|
|
|
<table class="ui very compact table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Productname</th>
|
2017-04-26 16:10:09 +02:00
|
|
|
<th>Amount</th>
|
2017-04-07 15:05:56 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="item in list">
|
|
|
|
<td>{{item.id}}</td>
|
|
|
|
<td><a ui-sref="item({productid: item.id})">{{item.title}}</a></td>
|
|
|
|
<td>
|
|
|
|
<img class="icon" src="/api/good/availablity/{{item.id}}"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|