genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
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.
hs_monolith/webroot/static/html/list.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>