[IMP] website_sale: display message when search returns no result

bzr revid: chm@openerp.com-20131107102935-r9212sq6avbhy2o2
This commit is contained in:
Christophe Matthieu 2013-11-07 11:29:35 +01:00
parent ea65573b48
commit 2ae05fb8de
1 changed files with 4 additions and 1 deletions

View File

@ -103,7 +103,7 @@
</div>
<div class='style_default row'>
<div class="col-md-12" id="products_grid">
<div class="col-md-12" id="products_grid" t-if="product_ids">
<table width="100%">
<tbody>
<t t-set="table_products" t-value="Ecommerce.get_bin_packing_products(product_ids, product_ids_for_holes, 4)"/>
@ -178,6 +178,9 @@
</tbody>
</table>
</div>
<div class="col-md-12" id="products_grid_empty" t-if="not product_ids">
<h3 class="text-center text-muted">No product found for this search</h3>
</div>
</div>
<div>
<t t-call="website.pager">