[FIX] font-awesome icons migration to v4
[odoo/odoo.git] / addons / website_sale / views / website_sale.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3 <data>
4
5     <!-- Layout add nav and footer -->
6
7     <template id="header" inherit_id="website.layout" name="Header Shop My Cart Link">
8         <xpath expr="//header//ul[@id='top_menu']/li" position="before">
9             <li t-att-class="(not website_sale_order or not website_sale_order.get_total_quantity()) and 'hidden' or ''">
10                 <a href="/shop/mycart/">
11                     <i class="fa fa-shopping-cart"></i>
12                     My cart <sup t-attf-class="my_cart_quantity label label-primary"
13                                   t-esc="website_sale_order and website_sale_order.get_total_quantity() or ''"/>
14                 </a>
15             </li>
16         </xpath>
17         <xpath expr="//t[@id='editable_scripts_hook']" position="inside">
18               <script type="text/javascript" src="/website_sale/static/src/js/website_sale.editor.js" t-ignore="true"></script>
19               <script type="text/javascript" src="/website_sale/static/src/js/website.tour.shop.js" t-ignore="true"></script>
20         </xpath>
21     </template>
22
23     <!-- List of categories -->
24
25     <template id="categories_recursive" name="Category list">
26         <li t-att-class="str(category.id) == search.get('category') and 'active' or ''">
27             <a t-href="/shop/category/#{ category.id }/" t-field="category.name"></a>
28             <ul t-if="category.child_id" class="nav nav-pills nav-stacked nav-hierarchy">
29                 <t t-foreach="category.child_id" t-as="category">
30                     <t t-call="website_sale.categories_recursive"/>
31                 </t>
32             </ul>
33         </li>
34     </template>
35
36     <!-- Product list -->
37
38     <template id="search" name="Search hidden fields">
39         <input type="hidden" name="category" t-att-value="search.get('category') or ''"/>
40         <input type="hidden" name="filter_domain" t-att-value="search.get('filter_domain') or ''"/>
41         <input type="text" name="search" class="search-query form-control" placeholder="Search..." t-att-value="search.get('search') or ''"/>
42     </template>
43
44     <template id="products_cart" name="Shopping cart">
45       <div class="ribbon-wrapper" contentEditable="false">
46         <div class="ribbon"><span contentEditable="true">Promo</span></div>
47       </div>
48       <div class="oe_product_description">
49           <a t-href="/shop/product/#{ slug(product) }/" t-keep-query="category,search,filter_domain">
50               <b t-field="product.name"/>
51           </a>
52       </div>
53       <div class="product_price" t-if="product.product_variant_ids">
54           <b>
55               <t t-if="product.product_variant_ids[0].lst_price != product.product_variant_ids[0].price">
56                 <del class="text-danger"
57                   t-field="product.product_variant_ids[0].lst_price" t-field-options='{
58                        "widget": "monetary",
59                        "display_currency": "website.pricelist_id.currency_id"
60                   }'/>&amp;nbsp;
61               </t>
62               <span t-field="product.product_variant_ids[0].price"  t-field-options='{
63                    "widget": "monetary",
64                    "display_currency": "website.pricelist_id.currency_id"
65                }'/>
66           </b>
67       </div>
68       <div class="oe_product_image text-center">
69           <a t-href="/shop/product/#{ product.id }/" t-keep-query="category,search,filter_domain">
70               <span t-field="product.image" t-field-options='{"widget": "image"}'/>
71           </a>
72       </div>
73     </template>
74
75     <template id="products" name="Products">
76         <t t-call="website.layout">
77             <t t-set="head">
78                 <script type="text/javascript" src="/web/static/lib/jquery.ui/js/jquery-ui-1.9.1.custom.js"></script>
79                 <link rel='stylesheet' href="/web/static/lib/jquery.ui/css/smoothness/jquery-ui-1.9.1.custom.css"/>
80                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
81                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
82                 <t t-raw="head or ''"/>
83             </t>
84             <t t-set="additional_title">Shop</t>
85             <div id="wrap">
86               <div class="oe_structure"/>
87               <div class="container oe_website_sale">
88                 <div class="row">
89                     <div class="col-sm-8 products_pager">
90                         <t t-call="website.pager">
91                             <t t-set="classname">pull-right</t>
92                             <t t-set="style">padding-left: 5px;</t>
93                         </t>
94                         <form action="/shop/" method="get" class="pull-right pagination form-inline" style="padding-right: 5px;">
95                             <t t-call="website_sale.search" />
96                         </form>
97                     </div>
98                 </div>
99
100                 <div class='style_default row'>
101                   <div class="hidden" id="products_grid_before"></div>
102                   <div class="col-md-12" id="products_grid">
103                     <table width="100%">
104                       <tbody>
105                         <tr t-foreach="bins" t-as="tr_product">
106                           <t t-foreach="tr_product" t-as="td_product">
107                             <t t-if="td_product">
108                             <t t-set="product" t-value="td_product['product']"/>
109                             <td t-att-colspan="td_product['x']"
110                                 t-attf-width="#{td_product['x']*25}%"
111                                 t-att-rowspan="td_product['y']"
112                                 t-attf-class="oe_product oe-height-#{td_product['y']*2} #{ td_product['class'] }">
113
114                                 <div class="oe_product_cart" t-att-data-publish="product.website_published and 'on' or 'off'">
115
116                                   <div class="css_options" t-ignore="true" t-if="editable">
117                                     <div t-attf-class="dropdown js_options" t-att-data-id="product.id">
118                                       <a class="btn btn-default" t-att-id="'dopprod-%s' % product.id" role="button" data-toggle="dropdown">Options <span class="caret"></span></a>
119                                       <ul class="dropdown-menu" role="menu" t-att-aria-labelledby="'dopprod-%s' % product.id">
120                                         <li class='dropdown-submenu'>
121                                           <a tabindex="-1" href="#">Size</a>
122                                           <ul class="dropdown-menu" name="size">
123                                             <li><a href="#">
124                                               <table>
125                                                 <tr>
126                                                   <td class="selected"></td>
127                                                   <td t-att-class="product.website_size_x > 1 and 'selected'"></td>
128                                                   <td t-att-class="product.website_size_x > 2 and 'selected'"></td>
129                                                   <td t-att-class="product.website_size_x > 3 and 'selected'"></td>
130                                                 </tr>
131                                                 <tr>
132                                                   <td t-att-class="product.website_size_y > 1 and 'selected'"></td>
133                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 1 and 'selected'"></td>
134                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 2 and 'selected'"></td>
135                                                   <td t-att-class="product.website_size_y > 1 and product.website_size_x > 3 and 'selected'"></td>
136                                                 </tr>
137                                                 <tr>
138                                                   <td t-att-class="product.website_size_y > 2 and 'selected'"></td>
139                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 1 and 'selected'"></td>
140                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 2 and 'selected'"></td>
141                                                   <td t-att-class="product.website_size_y > 2 and product.website_size_x > 3 and 'selected'"></td>
142                                                 </tr>
143                                                 <tr>
144                                                   <td t-att-class="product.website_size_y > 3 and 'selected'"></td>
145                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 1 and 'selected'"></td>
146                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 2 and 'selected'"></td>
147                                                   <td t-att-class="product.website_size_y > 3 and product.website_size_x > 3 and 'selected'"></td>
148                                                 </tr>
149                                               </table>
150                                             </a></li>
151                                           </ul>
152                                         </li>
153                                         <li class='dropdown-submenu'>
154                                           <a tabindex="-1" href="#">Styles</a>
155                                           <ul class="dropdown-menu" name="style">
156                                             <t t-foreach="styles" t-as="style">
157                                               <li t-att-class="style_in_product(style, product) and 'active' or ''"><a href="#" t-att-data-id="style.id" t-att-data-class="style.html_class"><t t-esc="style.name"/></a></li>
158                                             </t>
159                                           </ul>
160                                         </li>
161                                       </ul>
162                                     </div>
163                                   </div>
164
165                                   <t t-call="website_sale.products_cart"/>
166                                 </div>
167
168                             </td>
169                             </t>
170                             <td t-if="td_product == None"/>
171                           </t>
172                         </tr>
173                       </tbody>
174                     </table>
175                     <t t-if="not bins">
176                       <h3 class="text-center text-muted">No product found for this search</h3>
177                     </t>
178                   </div>
179                 </div>
180                 <div class="products_pager">
181                     <t t-call="website.pager">
182                         <t t-set="classname">pull-right</t>
183                     </t>
184                 </div>
185               </div>
186               <div class="oe_structure mb32"/>
187             </div>
188         </t>
189     </template>
190
191     <!-- Product Description-->
192
193     <template id="product_description" inherit_option_id="website_sale.products_cart" name="Product Description">
194         <xpath expr="//div[@class='oe_product_description']" position="inside">
195             <p class="text-muted oe_subdescription">
196                 <span t-field="product.description_sale"/>
197             </p>
198         </xpath>
199     </template>
200
201     <!-- Add to cart button-->
202
203     <template id="add_to_basket" inherit_option_id="website_sale.products_cart" name="Add to Cart">
204         <xpath expr="//div[@class='product_price']" position="inside">
205             <a t-href="/shop/add_cart/?product_id=#{ product.id }" class="js_add_cart_json">
206                 <span class="fa fa-shopping-cart"/>
207             </a>
208         </xpath>
209     </template>
210
211     <!-- List view of products -->
212
213     <template id="list_view" inherit_option_id="website_sale.products" name="List View">
214         <xpath expr="//div[@id='products_grid']//table" position="replace">
215           <div class="row">
216             <t t-foreach="products" t-as="product">
217               <div class="col-md-12 oe_list_products oe-height-1">
218                 <t t-call="website_sale.products_cart"/>
219               </div>
220             </t>
221           </div>
222         </xpath>
223     </template>
224
225
226     <!-- product -->
227
228     <template id="product" name="Product">
229         <t t-call="website.layout">
230             <t t-set="head">
231                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
232             </t>
233             <t t-set="additional_title" t-value="product.name"/>
234             <div id="wrap">
235
236               <section class="container mt8">
237                 <div class="row">
238                   <div class="col-sm-5">
239                       <ol class="breadcrumb">
240                           <li><a href="/shop">Products</a></li>
241                           <li t-if="search.get('category')"><a t-href="/shop/" t-keep-query="category,search,filter_domain"><span t-field="category.name"/></a></li>
242                           <li class="active"><span t-field="product.name"/></li>
243                       </ol>
244                   </div><div class="col-sm-3">
245                       <t t-call="website.publish_management">
246                         <t t-set="object" t-value="product"/>
247                         <t t-set="publish_edit" t-value="True"/>
248                         <li class='dropdown-submenu'>
249                             <a tabindex="-1" href="#">Promote</a>
250                             <ul class="dropdown-menu" name="sequence">
251                                 <li><a href="#" class="js_go_to_top">Push to top</a></li>
252                                 <li><a href="#" class="js_go_to_bottom">Push to bottom</a></li>
253                             </ul>
254                         </li>
255                       </t>
256                   </div><div class="col-sm-3 col-sm-offset-1">
257                         <form action="/shop/" method="get" class="pull-right">
258                             <t t-call="website_sale.search" />
259                         </form>
260                   </div>
261                 </div>
262               </section>
263
264               <section class="container oe_website_sale mb16" id="product_detail">
265                 <div class="row">
266                   <div class="col-sm-7 col-md-7 col-lg-7">
267                       <span t-field="product.image" style="max-height: 500px" t-field-options='{"widget": "image", "class": "img img-responsive"}'/>
268                   </div><div class="col-sm-5 col-md-5 col-lg-4 col-lg-offset-1">
269                       <h1 t-field="product.name">Product Name</h1>
270
271                       <form action="/shop/add_cart/" class="js_add_cart_json">
272                           <input type="hidden" t-if="len(product.product_variant_ids) == 1" name="product_id" t-att-value="product.product_variant_ids[0].id"/>
273                           <t t-if="len(product.product_variant_ids) &gt; 1">
274                               <label label-default="label-default" class="radio" t-foreach="product.product_variant_ids" t-as="variant_id">
275                                   <input type="radio" name="product_id" t-att-value="variant_id.id" t-att-checked="variant_id == product.product_variant_ids[0] or None"/>
276                                   <t t-esc="variant_id.variants or ''">Standard</t>
277                                   <span class="badge" t-if="variant_id.price_extra">
278                                       <t t-esc="variant_id.price_extra > 0 and '+' or ''"/><span t-field="variant_id.price_extra" t-field-options='{
279                                                    "widget": "monetary",
280                                                    "display_currency": "website.pricelist_id.currency_id"
281                                                }'/>
282                                   </span>
283                               </label>
284                               <br/>
285                           </t>
286
287                           <div class="product_price mt16" t-if="product.product_variant_ids">
288                               <h4>
289                                   <t t-if="product.product_variant_ids[0].lst_price != product.product_variant_ids[0].price">
290                                   <span class="text-danger" style="text-decoration: line-through;"
291                                     t-field="product.product_variant_ids[0].lst_price"
292                                     t-field-options='{
293                                        "widget": "monetary",
294                                        "display_currency": "website.pricelist_id.currency_id"
295                                    }'/><br/>
296                                   </t>
297                                   <b class="oe_price"
298                                     t-field="product.product_variant_ids[0].price"
299                                     t-field-options='{
300                                        "widget": "monetary",
301                                        "display_currency": "website.pricelist_id.currency_id"
302                                    }'/>
303                               </h4>
304                           </div>
305                           <button class="btn btn-primary btn-lg mt8">Add to Cart</button>
306                           <hr t-if="product.description_sale"/>
307                           <p t-field="product.description_sale" class="text-muted"/>
308                           <hr/>
309                           <p class="text-muted">
310                               30-day money-back guarantee<br/>
311                               Free Shipping in U.S.<br/>
312                               Buy now, get in 2 days
313                           </p>
314                       </form>
315                   </div>
316                 </div>
317               </section>
318               <div t-field="product.website_description" class="oe_structure" id="product_full_description"/>
319             </div>
320         </t>
321     </template>
322
323     <template id="recommended_products" inherit_id="website_sale.product" inherit_option_id="website_sale.product" name="Recommended Products">
324         <xpath expr="//div[@id='product_full_description']" position="after">
325             <div class="container mt32" t-if="product.recommended_products()">
326                 <h3>Customers who have bought this product also bought:</h3>
327                 <div class='row mt16' style="margin-left: 15px !important;">
328                 <t t-foreach="product.recommended_products()" t-as="product">
329                     <div class='col-md-2 thumbnail' style='width: 170px; margin-right: 16px;'>
330                         <div class='mt16 text-center'>
331                             <span t-field="product.image_small"/>
332                             <h5>
333                                 <a t-href="/shop/product/#{ slug(product) }/"
334                                    style="display: block">
335                                     <span t-field='product.name'
336                                           style="display: block"/>
337                                 </a>
338                             </h5>
339                         </div>
340                     </div>
341                 </t>
342                 </div>
343             </div>
344         </xpath>
345     </template>
346
347     <template id="product_attributes" inherit_option_id="website_sale.product" name="Product Attributes">
348       <xpath expr="//p[@t-field='product.description_sale']" position="after">
349         <hr t-if="product.website_attribute_ids"/>
350         <p class="text-muted">
351           <t t-set="attr" t-value="None"/>
352           <t t-foreach="product.website_attribute_ids" t-as="attribute"><br t-if="attr and attribute.attribute_id.id != attr"/><t t-if="attribute.attribute_id.id != attr"><span t-field="attribute.attribute_id"/>: </t><t t-if="attribute.attribute_id.id == attr">, </t><t t-if="attribute.attribute_id.type == 'distinct'"><span t-field="attribute.value_id"/></t><t t-if="attribute.attribute_id.type == 'float'"><span t-field="attribute.value"/></t><t t-set="attr" t-value="attribute.attribute_id.id"/></t>
353         </p>
354       </xpath>
355     </template>
356
357     <!-- Page Shop my cart -->
358
359     <template id="mycart" name="Your Cart">
360         <t t-call="website.layout">
361             <t t-set="head">
362                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
363                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
364                 <t t-raw="head or ''"/>
365             </t>
366             <div id="wrap">
367               <div class="container oe_website_sale">
368
369                 <ul class="wizard pull-right">
370                     <li class="text-primary">Review Order<span class="chevron"></span></li>
371                     <li class="text-muted">Shipping &amp; Billing<span class="chevron"></span></li>
372                     <li class="text-muted">Payment<span class="chevron"></span></li>
373                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
374                 </ul>
375                 <h1 class="mb32">Shopping Cart</h1>
376                 <div class="row">
377                     <div class="col-md-8 col-sm-9 oe_mycart">
378                         <div t-if="not website_sale_order or not website_sale_order.order_line" class="well well-lg">
379                             Your cart is empty!
380                         </div>
381                         <table class='table table-striped table-condensed' id="mycart_products" t-if="website_sale_order and website_sale_order.order_line">
382                             <colgroup>
383                                 <col width="80"/>
384                                 <col/>
385                                 <col width="100"/>
386                                 <col width="120"/>
387                             </colgroup>
388                             <thead>
389                                 <tr>
390                                     <th colspan="2">Product</th>
391                                     <th>Price</th>
392                                     <th>Quantity</th>
393                                 </tr>
394                             </thead>
395                             <tbody>
396                                 <tr t-foreach="website_sale_order.order_line" t-as="line">
397                                     <td colspan="2" t-if="not line.product_id.product_tmpl_id"></td>
398                                     <td t-if="line.product_id.product_tmpl_id">
399                                         <span t-field="line.product_id.image_small"
400                                               t-field-options='{"widget": "image", "class": "img-rounded"}'/>
401                                     </td>
402                                     <td t-if="line.product_id.product_tmpl_id">
403                                         <div>
404                                             <a t-href="/shop/product/#{ slug(line.product_id.product_tmpl_id) }/">
405                                                 <strong t-field="line.product_id.name"/>
406                                             </a>
407                                         </div>
408                                         <div class="text-muted" t-field="line.product_id.description_sale"/>
409                                     </td>
410                                     <td class="text-center">
411                                        <del class="text-danger" t-if="line.product_id.lst_price &gt; line.price_unit">
412                                            <span t-field="line.product_id.lst_price" t-field-options='{
413                                                "widget": "monetary",
414                                                "display_currency": "website.pricelist_id.currency_id"
415                                            }'/>
416                                        </del>
417                                        <span t-field="line.price_unit" t-field-options='{
418                                            "widget": "monetary",
419                                            "display_currency": "website.pricelist_id.currency_id"
420                                        }'/>
421                                     </td>
422                                     <td>
423                                         <div class="input-group">
424                                             <span class="input-group-addon">
425                                                 <a t-href="./add_cart/?remove=True&amp;order_line_id=#{ line.id }" class="mb8 js_add_cart_json">
426                                                     <span class="fa fa-minus-square"/>
427                                                 </a>
428                                             </span>
429                                             <input type="text" class="js_quantity form-control"
430                                                 t-att-data-id="line.id" t-att-value="int(line.product_uom_qty)"/>
431                                             <span class="input-group-addon">
432                                                 <a t-href="./add_cart/?order_line_id=#{ line.id }" class="mb8 float_left js_add_cart_json">
433                                                     <span class="fa fa-plus-square"/>
434                                                 </a>
435                                             </span>
436                                         </div>
437
438                                     </td>
439                                 </tr>
440                             </tbody>
441                         </table>
442                         <table class='pull-right mb16' id="mycart_total" t-if="website_sale_order">
443                             <colgroup>
444                                 <col width="100"/>
445                                 <col width="120"/>
446                             </colgroup>
447                             <thead>
448                                 <tr style="border-top: 1px solid #000">
449                                     <th><h3>Total:</h3></th>
450                                     <th class="text-right">
451                                       <h3><t t-call="website_sale.total"/></h3>
452                                     </th>
453                                 </tr>
454                                 <tr class="text-muted">
455                                     <td><abbr title="Taxes may be updated after providing shipping address">Incl. Taxes:</abbr></td>
456                                     <td class="text-right">
457                                         <span t-field="website_sale_order.amount_tax" t-field-options='{
458                                             "widget": "monetary",
459                                             "display_currency": "website.pricelist_id.currency_id"
460                                         }'/>
461                                     </td>
462                                 </tr>
463                             </thead>
464                         </table>
465                         <div class="clearfix"/>
466                         <a href="/shop" class="btn btn-default mb32"><span class="fa fa-long-arrow-left"/> Continue Shopping</a>
467                         <a t-if="website_sale_order and website_sale_order.order_line" href="/shop/checkout/" class="btn btn-primary pull-right mb32">Process Checkout <span class="fa fa-long-arrow-right"/></a>
468                         <div class="oe_structure"/>
469                     </div>
470                     <div class="col-lg-3 col-lg-offset-1 col-sm-3 text-muted" id="right_column">
471                         <h4>Policies</h4>
472                         <ul class="list-unstyled mb32">
473                             <li>&#9745; 30-days money-back guarantee</li>
474                             <li>&#9745; Invoice sent by e-Mail</li>
475                         </ul>
476                         <h4>Secure Payment</h4>
477                         <ul class="list-unstyled mb32">
478                             <li>&#9745; 256 bit encryption</li>
479                             <li>&#9745; Processed by Ogone</li>
480                         </ul>
481                     </div>
482                 </div>
483
484               </div>
485               <div class="oe_structure"/>
486             </div>
487         </t>
488     </template>
489
490     <!-- Page Shop -->
491
492     <template id="products_categories" inherit_option_id="website_sale.products" name="Product Categories">
493         <xpath expr="//div[@id='products_grid_before']" position="inside">
494             <ul class="nav nav-pills nav-stacked mt16">
495                 <li t-att-class=" '' if search.get('category') else 'active' "><a href="/shop/">All Products</a></li>
496                 <t t-foreach="categories" t-as="category">
497                     <t t-call="website_sale.categories_recursive"/>
498                 </t>
499             </ul>
500         </xpath>
501         <xpath expr="//div[@id='products_grid_before']" position="attributes">
502             <attribute name="class">col-md-3</attribute>
503         </xpath>
504         <xpath expr="//div[@id='products_grid']" position="attributes">
505             <attribute name="class">col-md-9</attribute>
506         </xpath>
507     </template>
508
509     <template id="products_attributes" inherit_option_id="website_sale.products" name="Product Filters and Attributes">
510         <xpath expr="//div[@id='products_grid_before']" position="inside">
511             <form t-action="/shop/filter/" method="post" t-keep-query="category,search">
512                 <ul class="nav nav-pills nav-stacked mt16">
513                     <t t-set="attribute_ids" t-value="Ecommerce.get_attribute_ids()"/>
514                     <t t-foreach="attribute_ids" t-as="attribute_id">
515                       <t t-if="attribute_id.visible">
516                         <li t-if="attribute_id.value_ids and attribute_id.type == 'distinct'">
517                             <div t-field="attribute_id.name"/>
518                             <ul class="nav nav-pills nav-stacked">
519                                 <t t-foreach="attribute_id.value_ids" t-as="value_id">
520                                     <li t-att-class="Ecommerce.has_search_filter(attribute_id.id, value_id.id) and 'active' or ''">
521                                         <label style="margin: 0 20px;">
522                                             <input type="checkbox" t-att-name="'att-%s-%s' % (attribute_id.id, value_id.id)"
523                                                 t-att-checked="Ecommerce.has_search_filter(attribute_id.id, value_id.id) and 'checked' or ''"/>
524                                             <span style="font-weight: normal" t-field="value_id.name"/>
525                                         </label>
526                                     </li>
527                                 </t>
528                             </ul>
529                         </li>
530                         <li t-if="attribute_id.type == 'float' and attribute_id.float_min != attribute_id.float_max">
531                             <div t-field="attribute_id.name"/>
532                             <t t-set="attribute" t-value="Ecommerce.has_search_filter(attribute_id.id)"/>
533                             <div style="margin: 0 20px;" class="js_slider"
534                               t-att-data-id="attribute_id.id"
535                               t-att-data-value-min="attribute and attribute[1][0] or attribute_id.float_min"
536                               t-att-data-value-max="attribute and attribute[1][1] or attribute_id.float_max"
537                               t-att-data-min="attribute_id.float_min"
538                               t-att-data-max="attribute_id.float_max"></div>
539                         </li>
540                       </t>
541                     </t>
542                 </ul>
543                 <button class="btn btn-xs btn-primary mt16">Apply filter</button>
544                 <a t-href="/shop/" t-keep-query="category,search,add_filter" class="btn btn-xs btn-default mt16">Cancel filter</a>
545             </form>
546         </xpath>
547         <xpath expr="//div[@id='products_grid_before']" position="attributes">
548             <attribute name="class">col-md-3</attribute>
549         </xpath>
550         <xpath expr="//div[@id='products_grid']" position="attributes">
551             <attribute name="class">col-md-9</attribute>
552         </xpath>
553     </template>
554
555     <template id="suggested_products_list" inherit_id="website_sale.mycart" inherit_option_id="website_sale.mycart" name="Suggested Products in my cart">
556         <xpath expr="//table[@id='mycart_products']" position="after">
557             <table t-if="suggested_products" class='table table-striped table-condensed'>
558                 <colgroup>
559                     <col width="80"/>
560                     <col/>
561                     <col width="100"/>
562                     <col width="120"/>
563                 </colgroup>
564                 <thead>
565                     <tr>
566                         <th colspan="2">Suggested products</th>
567                     </tr>
568                 </thead>
569                 <tbody>
570                     <tr t-foreach="suggested_products" t-as="product">
571
572                         <td>
573                             <a t-href="/shop/product/#{ slug(product.product_tmpl_id) }/">
574                                 <span t-field="product.image_small"
575                                       t-field-options='{"widget": "image", "class": "img-rounded"}'/>
576                             </a>
577                         </td>
578                         <td>
579                             <div>
580                                 <a t-href="/shop/product/#{ slug(product.product_tmpl_id) }/">
581                                     <strong t-field="product.name"/>
582                                 </a>
583                             </div>
584                             <div class="text-muted" t-field="product.description_sale"/>
585                         </td>
586                         <td>
587                             <span t-field="product.lst_price" t-field-options='{
588                                 "widget": "monetary",
589                                 "display_currency": "website.pricelist_id.currency_id"
590                             }'/>
591                         </td>
592                         <td class="text-center">
593                             <a t-href="./add_cart/?product_id=#{ product.id }"><strong>Add to Cart</strong></a>
594                         </td>
595                     </tr>
596                 </tbody>
597             </table>
598         </xpath>
599     </template>
600
601     <template id="reduction_code" inherit_option_id="website_sale.mycart" name="Reduction Code">
602         <xpath expr="//div[@id='right_column']" position="inside">
603             <h4>Coupon Code</h4>
604             <p>
605                 Have a coupon code? Fill in this field and apply.
606             </p>
607             <form t-if="website_sale_order and website_sale_order.order_line" action="/shop/mycart/" method="post" class="mb32">
608                 <div class="input-group">
609                     <input name="promo" class='form-control' type="text" placeholder="code..." t-att-value="website_sale_order.pricelist_id.code or ''"/>
610                     <div class="input-group-btn">
611                         <button class="btn btn-default">Apply</button>
612                     </div>
613                 </div>
614             </form>
615         </xpath>
616     </template>
617
618
619     <!-- Page confirm my cart -->
620
621     <template id="checkout">
622         <t t-call="website.layout">
623           <t t-set="head">
624               <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
625               <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
626               <t t-raw="head or ''"/>
627           </t>
628           <t t-set="additional_title">Shop - Checkout</t>
629           <div id="wrap">
630             <div class="container oe_website_sale">
631                 <ul class="wizard pull-right">
632                     <li><a href="/shop/mycart" class="text-success">Review Order<span class="chevron"></span></a></li>
633                     <li class="text-primary">Shipping &amp; Billing<span class="chevron"></span></li>
634                     <li class="text-muted">Payment<span class="chevron"></span></li>
635                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
636                 </ul>
637                 <h1>Your Address</h1>
638                 <form action="/shop/confirm_order/" method="post">
639
640                 <div class="row">
641                 <div class="col-md-8 oe_mycart">
642                     <h3 class="page-header mt16">Billing Information
643                         <small t-if="user_id.id == website.public_user.id"> or
644                             <a t-if="not partner" t-attf-href="/web#action=redirect&amp;url=#{ request.httprequest.url }">sign in</a>
645                         </small>
646                     </h3>
647                         <div class="row">
648                             <div t-attf-class="form-group #{error.get('name') and 'has-error' or ''} col-lg-6">
649                                 <label class="control-label" for="contact_name">Your Name</label>
650                                 <input type="text" name="name" class="form-control" t-att-value="checkout.get('name')"/>
651                             </div>
652                             <div t-attf-class="form-group #{error.get('company') and 'has-error' or ''} col-lg-6">
653                                 <label class="control-label" for="company" style="font-weight: normal">Your Company</label>
654                                 <input type="text" name="company" class="form-control" t-att-value="checkout.get('company')"/>
655                             </div>
656                             <div t-attf-class="form-group #{error.get('email') and 'has-error' or ''} col-lg-6">
657                                 <label class="control-label" for="contact_name">Email</label>
658                                 <input type="email" name="email" class="form-control" t-att-value="checkout.get('email')"/>
659                             </div>
660                             <div t-attf-class="form-group #{ error.get('phone') and 'has-error' or ''} col-lg-6">
661                                 <label class="control-label" for="phone">Phone</label>
662                                 <input type="tel" name="phone" class="form-control" t-att-value="checkout.get('phone')"/>
663                             </div>
664
665                             <div t-attf-class="form-group #{error.get('street') and 'has-error' or ''} col-lg-6">
666                                 <label class="control-label" for="street">Street</label>
667                                 <input type="text" name="street" class="form-control" t-att-value="checkout.get('street')"/>
668                             </div>
669                             <div class="clearfix"/>
670
671                             <div t-attf-class="form-group #{error.get('city') and 'has-error' or ''} col-lg-6">
672                                 <label class="control-label" for="city">City</label>
673                                 <input type="text" name="city" class="form-control" t-att-value="checkout.get('city')"/>
674                             </div>
675                             <div t-attf-class="form-group #{error.get('zip') and 'has-error' or ''} col-lg-6">
676                                 <label class="control-label" for="zip">Zip / Postal Code</label>
677                                 <input type="text" name="zip" class="form-control" t-att-value="checkout.get('zip')"/>
678                             </div>
679                             <div t-attf-class="form-group #{error.get('state_id') and 'has-error' or ''} col-lg-6">
680                                 <label class="control-label" for="state_id" style="font-weight: normal">State / Province</label>
681                                 <select name="state_id" class="form-control">
682                                     <option value="">select...</option>
683                                     <t t-foreach="states or []" t-as="state">
684                                         <option t-att-value="state.id" t-att-selected="state.id == checkout.get('state_id')"><t t-esc="state.name"/></option>
685                                     </t>
686                                 </select>
687                             </div>
688                             <div t-attf-class="form-group #{error.get('country_id') and 'has-error' or ''} col-lg-6">
689                                 <label class="control-label" for="contact_name">Country</label>
690                                 <select name="country_id" class="form-control">
691                                     <option value="">Country...</option>
692                                     <t t-foreach="countries or []" t-as="country">
693                                         <option t-att-value="country.id" t-att-selected="country.id == checkout.get('country_id')"><t t-esc="country.name"/></option>
694                                     </t>
695                                 </select>
696                             </div>
697
698                             <div class="clearfix"/>
699
700                             <div class="form-group col-lg-6">
701                                 <label>
702                                     <input t-if="not shipping" type="checkbox" name="shipping_different"/>
703                                     <input t-if="shipping" type="checkbox" name="shipping_different" checked="1"/>
704                                     Ship to a different address
705                                 </label>
706                             </div>
707                         </div>
708
709                         <div class="js_shipping row mb16" t-att-style="not shipping and 'display:none' or ''">
710                             <h3 class="oe_shipping col-lg-12 mt16">Shipping Information</h3>
711
712                             <div t-attf-class="form-group #{error.get('shipping_name') and 'has-error' or ''} col-lg-6">
713                                 <label class="control-label" for="contact_name">Name (Shipping)</label>
714                                 <input type="text" name="shipping_name" class="form-control" t-att-value="checkout.get('shipping_name', '')"/>
715                             </div>
716                             <div t-attf-class="form-group #{error.get('shipping_phone') and 'has-error' or ''} col-lg-6">
717                                 <label class="control-label" for="contact_name">Phone</label>
718                                 <input type="tel" name="shipping_phone" class="form-control" t-att-value="checkout.get('shipping_phone', '')"/>
719                             </div>
720                             <div t-attf-class="form-group #{error.get('shipping_street') and 'has-error' or ''} col-lg-6">
721                                 <label class="control-label" for="contact_name">Street</label>
722                                 <input type="text" name="shipping_street" class="form-control" t-att-value="checkout.get('shipping_street', '')"/>
723                             </div>
724                             <div class="clearfix"/>
725                             <div t-attf-class="form-group #{error.get('shipping_city') and 'has-error' or ''} col-lg-6">
726                                 <label class="control-label" for="contact_name">City</label>
727                                 <input type="text" name="shipping_city" class="form-control" t-att-value="checkout.get('shipping_city', '')"/>
728                             </div>
729                             <div t-attf-class="form-group #{error.get('shipping_zip') and 'has-error' or ''} col-lg-6">
730                                 <label class="control-label" for="contact_name">Zip / Postal Code</label>
731                                 <input type="text" name="shipping_zip" class="form-control" t-att-value="checkout.get('shipping_zip', '')"/>
732                             </div>
733                             <div t-attf-class="form-group #{error.get('shipping_state_id') and 'has-error' or ''} col-lg-6">
734                                 <label class="control-label" for="contact_name" style="font-weight: normal">State / Province</label>
735                                 <select name="shipping_state_id" class="form-control">
736                                     <option value="">State / Province...</option>
737                                     <t t-foreach="states or []" t-as="state">
738                                         <option t-att-value="state.id" t-att-selected="state.id == checkout.get('shipping_state_id')"><t t-esc="state.name"/></option>
739                                     </t>
740                                 </select>
741                             </div>
742                             <div t-attf-class="form-group #{error.get('shipping_country_id') and 'has-error' or ''} col-lg-6">
743                                 <label class="control-label" for="contact_name">Country</label>
744                                 <select name="shipping_country_id" class="form-control">
745                                     <option value="">Country...</option>
746                                     <t t-foreach="countries or []" t-as="country">
747                                         <option t-att-value="country.id" t-att-selected="country.id == checkout.get('shipping_country_id')"><t t-esc="country.name"/></option>
748                                     </t>
749                                 </select>
750                             </div>
751                         </div>
752                         <button type="submit" class="btn btn-default btn-primary pull-right mb32">Confirm <span class="fa fa-long-arrow-right"/></button>
753                 </div>
754                 <div class="col-lg-offset-1 col-lg-3 text-muted">
755                     <h3 class="page-header mt16">Your Order <small><a href="/shop/mycart"><span class="fa fa-arrow-right"/> change</a></small></h3>
756                     <div class="row">
757                         <div class="col-sm-6 text-right">Subtotal:</div>
758                         <div class="col-sm-6"><span t-esc="website_sale_order.amount_untaxed" t-field-options='{
759                             "widget": "monetary",
760                             "display_currency": "website.pricelist_id.currency_id"
761                         }'/></div>
762                         <div class="col-sm-6 text-right">Taxes:</div>
763                         <div class="col-sm-6"><span t-field="website_sale_order.amount_tax" t-field-options='{
764                             "widget": "monetary",
765                             "display_currency": "website.pricelist_id.currency_id"
766                         }'/></div>
767                         <div class="col-sm-6 text-right"><h4>Total To Pay:</h4></div>
768                         <div class="col-sm-6"><h4><span t-field="website_sale_order.amount_total" t-field-options='{
769                             "widget": "monetary",
770                             "display_currency": "website.pricelist_id.currency_id"
771                         }'/></h4></div>
772                     </div>
773                 </div>
774             </div>
775             </form>
776           </div>
777           </div>
778         </t>
779     </template>
780
781     <template id="payment">
782         <t t-call="website.layout">
783             <t t-set="head">
784                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale.js"></script>
785                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale_payment.js"></script>
786                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
787                 <t t-raw="head or ''"/>
788             </t>
789             <t t-set="additional_title">Shop - Select Payment Mode</t>
790             <div id="wrap">
791               <div class="container oe_website_sale">
792
793                 <ul class="wizard pull-right">
794                     <li><a href="/shop/mycart" class="text-success">Review Order<span class="chevron"></span></a></li>
795                     <li><a href="/shop/checkout" class="text-success">Shipping &amp; Billing<span class="chevron"></span></a></li>
796                     <li class="text-primary">Payment<span class="chevron"></span></li>
797                     <li class="text-muted">Confirmation<span class="chevron"></span></li>
798                 </ul>
799                 <h1 class="mb32">Validate Order</h1>
800                 <div class="row">
801                 <div class="col-lg-8 col-sm-9 oe_mycart">
802                     <table class='table table-striped table-condensed' id="mycart_products" t-if="website_sale_order and website_sale_order.order_line">
803                         <colgroup>
804                             <col width="80"/>
805                             <col/>
806                             <col width="100"/>
807                             <col width="120"/>
808                         </colgroup>
809                         <thead>
810                             <tr>
811                                 <th colspan="2">Product</th>
812                                 <th>Price</th>
813                                 <th>Quantity</th>
814                             </tr>
815                         </thead>
816                         <tbody>
817                             <tr t-foreach="website_sale_order.order_line" t-as="line">
818                                 <td colspan="2" t-if="not line.product_id.product_tmpl_id"></td>
819                                 <td t-if="line.product_id.product_tmpl_id">
820                                     <a t-href="/shop/product/#{ slug(line.product_id.product_tmpl_id) }/">
821                                         <span t-field="line.product_id.image_small"
822                                               t-field-options='{"widget": "image", "class": "img-rounded"}'/>
823                                     </a>
824                                 </td>
825                                 <td t-if="line.product_id.product_tmpl_id">
826                                    <strong t-field="line.product_id.name"/>
827                                 </td>
828                                 <td class="text-center">
829                                    <span t-field="line.price_unit" t-field-options='{
830                                        "widget": "monetary",
831                                        "display_currency": "website.pricelist_id.currency_id"
832                                    }'/>
833                                 </td>
834                                 <td>
835                                    <div t-esc="line.product_uom_qty"/>
836                                 </td>
837                             </tr>
838                         </tbody>
839                     </table>
840                     <table class='pull-right mb16' id="mycart_total">
841                         <colgroup>
842                             <col width="100"/>
843                             <col width="120"/>
844                         </colgroup>
845                         <thead>
846                             <tr style="border-top: 1px solid #000">
847                                 <th><h3>Total:</h3></th>
848                                 <th class="text-right"><h3><span t-field="website_sale_order.amount_total" t-field-options='{
849                                     "widget": "monetary",
850                                     "display_currency": "website.pricelist_id.currency_id"
851                                 }'/></h3></th>
852                             </tr>
853                             <tr class="text-muted">
854                                 <td>Incl. Taxes:</td>
855                                 <td class="text-right"><span t-field="website_sale_order.amount_tax" t-field-options='{
856                                     "widget": "monetary",
857                                     "display_currency": "website.pricelist_id.currency_id"
858                                 }'/></td>
859                             </tr>
860                         </thead>
861                     </table>
862                     <div class="clearfix"/>
863                     <div class="oe_structure"/>
864                   </div>
865                   <div class="col-lg-3 col-lg-offset-1 col-sm-3 text-muted" id="right_column">
866                       <h4>Bill To:</h4>
867                       <div t-field="website_sale_order.partner_invoice_id"/>
868                       <div>
869                         <a href="/shop/checkout"><span class="fa fa-arrow-right"/> Change Address</a>
870                       </div>
871
872                       <h4 class="mt32">Ship To:</h4>
873                       <div t-field="website_sale_order.partner_shipping_id"/>
874                       <div>
875                         <a href="/shop/checkout"><span class="fa fa-arrow-right"/> Change Address</a>
876                       </div>
877
878                   </div>
879                 </div>
880
881                 <div class="js_payment mb64" t-if="not payment_acquirer_id and payments" id="payment_method">
882                     <h3>Choose your payment method</h3>
883                     <div class="col-lg-5 col-sm-6">
884                         <t t-foreach="payments or []" t-as="payment">
885                             <label t-if="payment._content">
886                                 <input t-att-value="payment.id" type="radio" name="payment_type"/> <span t-field="payment.name"/>
887                             </label>
888                         </t>
889                         <t t-foreach="payments" t-as="payment">
890                             <div t-att-data-id="payment.id" t-raw="payment._content" class="oe_payment_acquirer hidden"/>
891                         </t>
892                     </div>
893                     <div class="col-lg-3 col-sm-3">
894                         <button class="btn btn-primary pull-right">Pay Now !!!</button>
895                     </div>
896                 </div>
897
898               </div>
899               <div class="oe_structure"/>
900             </div>
901
902         </t>
903     </template>
904
905     <template id="confirmation">
906         <t t-call="website.layout">
907             <t t-set="head">
908                 <link rel='stylesheet' href='/website_sale/static/src/css/website_sale.css'/>
909                 <script type="text/javascript" src="/website_sale/static/src/js/website_sale_validate.js"></script>
910                 <t t-raw="head or ''"/>
911             </t>
912             <t t-set="additional_title">Shop - Confirmed</t>
913             <div id="wrap">
914               <div class="container oe_website_sale">
915
916                 <ul class="wizard pull-right">
917                     <li class="text-muted">Review Order<span class="chevron"></span></li>
918                     <li class="text-muted">Shipping &amp; Billing<span class="chevron"></span></li>
919                     <li class="text-muted">Payment<span class="chevron"></span></li>
920                     <li class="text-primary">Confirmation<span class="chevron"></span></li>
921                 </ul>
922                 <h1 class="mb32">Order Confirmed</h1>
923                 <div class="row">
924                     <div class="col-md-8 oe_mycart">
925                         <h2>Thank you for your order.</h2>
926                         <div class="oe_website_sale_tx_status" t-att-data-order-id="order.id">
927                         </div>
928                         <div class="clearfix"/>
929                         <div class="oe_structure"/>
930                     </div>
931                     <div class="col-md-3 col-md-offset-1 text-muted" id="right_column">
932                         <h4>Bill To:</h4>
933                         <div t-field="order.partner_invoice_id"/>
934
935                         <h4 class="mt32">Ship To:</h4>
936                         <div t-field="order.partner_shipping_id"/>
937
938                         <h4 class="mt32">Amount:</h4>
939 <!--                         <div t-field="order.amount_total" t-field-options='{
940                             "widget": "monetary",
941                             "display_currency": "website.pricelist_id.currency_id"
942                         }'/> -->
943                     </div>
944                 </div>
945
946               </div>
947               <div class="oe_structure"/>
948             </div>
949
950         </t>
951     </template>
952
953     <template id="total">
954       <span t-field="website_sale_order.amount_total" t-field-options='{
955           "widget": "monetary",
956           "display_currency": "website.pricelist_id.currency_id"
957         }'/>
958     </template>
959  </data>
960 </openerp>