19 lines
412 B
HTML
19 lines
412 B
HTML
<table class="ui very compact table">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Productname</th>
|
|
<th>Amount</th>
|
|
</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>
|