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

24 lines
670 B
HTML

<h1>List of Products</h1>
<table class="ui very compact table">
<thead>
<tr>
<th class="two wide">#</th>
<th class="twelve wide">Productname</th>
<th class="one wide">Amount</th>
<th class="one wide"></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" 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>
</tr>
</tbody>
</table>