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-05-05 11:08:19 +02:00
|
|
|
<h1>List of Products</h1>
|
2017-04-07 15:05:56 +02:00
|
|
|
<table class="ui very compact table">
|
2017-06-21 15:25:18 +02:00
|
|
|
<thead>
|
2017-04-07 15:05:56 +02:00
|
|
|
<tr>
|
2017-06-21 15:25:18 +02:00
|
|
|
<th class="two wide">#</th>
|
|
|
|
<th class="twelve wide">Productname</th>
|
|
|
|
<th class="one wide">Amount</th>
|
|
|
|
<th class="one wide"></th>
|
2017-04-07 15:05:56 +02:00
|
|
|
</tr>
|
2017-06-21 15:25:18 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-04-07 15:05:56 +02:00
|
|
|
<tr ng-repeat="item in list">
|
2017-06-21 15:25:18 +02:00
|
|
|
<td>{{item.id}}</td>
|
2017-06-23 12:34:52 +02:00
|
|
|
<td><a ui-sref="item({productid: item.id})">{{item.name}}</a></td>
|
2017-06-21 15:25:18 +02:00
|
|
|
<td>
|
|
|
|
<img class="icon" ng-src="{{'/api/good/availablity/'+item.id| reloadSrc}}"/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a class="ui icon button" ui-sref="item-add({productid: item.id})"><i class="icon plus"></i></a>
|
|
|
|
</td>
|
2017-04-07 15:05:56 +02:00
|
|
|
</tr>
|
2017-06-21 15:25:18 +02:00
|
|
|
</tbody>
|
2017-04-07 15:05:56 +02:00
|
|
|
</table>
|