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/item.html

33 lines
602 B
HTML

<h1>{{obj.title}} <img class="icon" src="/api/good/availablity/{{obj.id}}"/></h1>
<table class="ui table very basic">
<tr>
<td>Count</td>
<td>Time of Delevery</td>
<td>Status of Freshness</td>
<td>< /td>
</tr>
<tr>
<td>{{list.length}}</td>
<td>#</td>
<td><img class="icon" src="/api/good/freshness"/></td>
<td><i class="trash icon"></i></td>
</tr>
</table>
<table class="ui table list" ng-if="list.length > 0">
<thead>
<tr>
<th>#</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in list">
<td>{{item.id}}</td>
</tr>
</tbody>
</table>