Files
robot-shop/web/static/search.html
Steve Waterworth e778bd7f5b added search feature
2018-01-31 17:26:30 +00:00

17 lines
559 B
HTML

<!-- search template -->
<div>
<div ng-if="data.searchResults.length == 0">
Sorry nothing matches your search
</div>
<div ng-if="data.searchResults.length != 0">
<h3>These ecellent candidates match your search</h3>
<table>
<tr ng-repeat="item in data.searchResults">
<td><a class="product" href="/product/{{ item.sku }}">{{ item.name }}</a></td>
<td>{{ item.description }}</td>
<td>&euro;{{ item.price }}</td>
</tr>
</table>
</div>
</div>