[IMP] Microdata for product

bzr revid: ddm@openerp.com-20140203174422-tah5bx94y9mctlei
This commit is contained in:
ddm@openerp.com 2014-02-03 18:44:22 +01:00
parent 9e12243350
commit af2db3b19d
1 changed files with 8 additions and 6 deletions

View File

@ -271,7 +271,7 @@
<link rel='stylesheet' href='/website_sale/static/src/css/website_mail.css'/>
</t>
<t t-set="additional_title" t-value="product.name"/>
<div id="wrap" class="js_sale">
<div itemscope="itemscope" itemtype="http://schema.org/Product" id="wrap" class="js_sale">
<section class="container mt8">
<div class="row">
@ -299,10 +299,10 @@
<section class="container oe_website_sale" id="product_detail">
<div class="row">
<div class="col-sm-7 col-md-7 col-lg-7">
<span t-field="product.image" t-field-options='{"widget": "image", "class": "product_detail_img"}'/>
<span itemprop="image" t-field="product.image" t-field-options='{"widget": "image", "class": "product_detail_img"}'/>
</div><div class="col-sm-5 col-md-5 col-lg-4 col-lg-offset-1">
<h1 t-field="product.name">Product Name</h1>
<h1 itemprop="name" t-field="product.name">Product Name</h1>
<meta itemprop="url" t-attf-content="/shop/product/{{ slug(product) }}"/>
<form action="/shop/add_cart/" class="js_add_cart_json" method="POST">
<input type="hidden" t-if="len(product.product_variant_ids) == 1" name="product_id" t-att-value="product.product_variant_ids[0].id"/>
<t t-if="len(product.product_variant_ids) &gt; 1">
@ -318,7 +318,7 @@
</label>
</t>
<div class="product_price mt16" t-if="product.product_variant_ids">
<div itemprop="offers" itemscope="itemscope" itemtype="http://schema.org/Offer" class="product_price mt16" t-if="product.product_variant_ids">
<h4>
<t t-if="product.product_variant_ids[0].lst_price != product.product_variant_ids[0].price">
<span class="text-danger" style="text-decoration: line-through;"
@ -334,6 +334,8 @@
"widget": "monetary",
"display_currency": "website.pricelist_id.currency_id"
}'/>
<meta itemprop="price" t-att-content="product.product_variant_ids[0].price"/>
<meta itemprop="priceCurrency" t-att-content="website.pricelist_id.currency_id.name"/>
</h4>
</div>
<button class="btn btn-primary btn-lg mt8">Add to Cart</button>
@ -349,7 +351,7 @@
</div>
</div>
</section>
<div t-field="product.website_description" class="oe_structure mt16" id="product_full_description"/>
<div itemprop="description" t-field="product.website_description" class="oe_structure mt16" id="product_full_description"/>
</div>
</t>
</template>