[FIX] block-level links

bzr revid: xmo@openerp.com-20130924112402-twcgdh0b18vzdwru
This commit is contained in:
Xavier Morel 2013-09-24 13:24:02 +02:00
parent 7533fe77b4
commit 8b06e72716
1 changed files with 9 additions and 5 deletions

View File

@ -426,12 +426,16 @@
<div class='row mt16'>
<t t-foreach="suggested_products" t-as="product">
<div class='col-md-2 thumbnail'>
<a t-attf-href="/shop/product/#{ product.id }/">
<div class='mt16 text-center'>
<div class='mt16 text-center'>
<a t-attf-href="/shop/product/#{ product.id }/">
<img t-att-src="product.img('image_small')"/>
<h5 t-field='product.name'></h5>
</div>
</a>
</a>
<h5>
<a t-attf-href="/shop/product/#{ product.id }/" style="display: block;">
<span t-field="product.name"/>
</a>
</h5>
</div>
</div>
</t>
</div>