33 lines
602 B
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>
|