Anand Doshi | ab69029 | 2013-06-13 11:21:35 +0530 | [diff] [blame] | 1 | {% extends "app/website/templates/html/page.html" %} |
| 2 | |
| 3 | {% block javascript %} |
| 4 | {% include "app/website/templates/js/cart.js" %} |
| 5 | {% endblock %} |
| 6 | |
| 7 | {% set title="Shopping Cart" %} |
| 8 | |
| 9 | {% block content %} |
| 10 | <div class="col col-lg-12"> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 11 | <h2><i class="icon-shopping-cart"></i> {{ title }}</h2> |
Anand Doshi | 3dceb84 | 2013-06-19 14:57:14 +0530 | [diff] [blame] | 12 | <div class="progress progress-striped active"> |
| 13 | <div class="progress-bar progress-bar-info" style="width: 100%;"></div> |
| 14 | </div> |
| 15 | <div id="cart-container" class="hide"> |
| 16 | <button class="btn btn-success pull-right" type="button">Place Order</button> |
| 17 | <div class="clearfix"></div> |
| 18 | <hr> |
Anand Doshi | c2a3527 | 2013-06-19 17:19:20 +0530 | [diff] [blame] | 19 | <div class="row"> |
| 20 | <div class="col col-lg-9 col-sm-9"> |
| 21 | <div class="row"> |
Anand Doshi | 0b4943c | 2013-07-04 23:45:22 +0530 | [diff] [blame^] | 22 | <div class="col col-lg-9 col-offset-3"><h4>Item Details</h4></div> |
Anand Doshi | c2a3527 | 2013-06-19 17:19:20 +0530 | [diff] [blame] | 23 | </div> |
| 24 | </div> |
Anand Doshi | 0b4943c | 2013-07-04 23:45:22 +0530 | [diff] [blame^] | 25 | <div class="col col-lg-3 col-sm-3 text-right"><h4>Qty, Amount</h4></div> |
Anand Doshi | c2a3527 | 2013-06-19 17:19:20 +0530 | [diff] [blame] | 26 | </div><hr> |
Anand Doshi | 3dceb84 | 2013-06-19 14:57:14 +0530 | [diff] [blame] | 27 | <div id="cart-items"> |
| 28 | </div> |
Anand Doshi | 3dceb84 | 2013-06-19 14:57:14 +0530 | [diff] [blame] | 29 | <div id="cart-taxes"> |
| 30 | </div> |
Anand Doshi | 0b4943c | 2013-07-04 23:45:22 +0530 | [diff] [blame^] | 31 | <div id="cart-totals"> |
| 32 | </div> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 33 | <hr> |
Anand Doshi | 3dceb84 | 2013-06-19 14:57:14 +0530 | [diff] [blame] | 34 | <div id="cart-addresses"> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 35 | <div class="row"> |
| 36 | <div class="col col-lg-6"> |
| 37 | <h4>Shipping Address</h4> |
| 38 | <div id="cart-shipping-address" class="accordion" |
| 39 | data-fieldname="shipping_address_name"></div> |
| 40 | <button class="btn btn-default" type="button" id="cart-add-shipping-address"> |
Anand Doshi | 0b4943c | 2013-07-04 23:45:22 +0530 | [diff] [blame^] | 41 | <span class="icon icon-plus"></span> New Shipping Address</button> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 42 | </div> |
| 43 | <div class="col col-lg-6"> |
| 44 | <h4>Billing Address</h4> |
| 45 | <div id="cart-billing-address" class="accordion" |
| 46 | data-fieldname="customer_address"></div> |
| 47 | <button class="btn btn-default" type="button" id="cart-add-billing-address"> |
Anand Doshi | 0b4943c | 2013-07-04 23:45:22 +0530 | [diff] [blame^] | 48 | <span class="icon icon-plus"></span> New Billing Address</button> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 49 | </div> |
Anand Doshi | edbf3e1 | 2013-07-02 11:40:16 +0530 | [diff] [blame] | 50 | </div> |
| 51 | <hr> |
Anand Doshi | 3dceb84 | 2013-06-19 14:57:14 +0530 | [diff] [blame] | 52 | </div> |
| 53 | <button class="btn btn-success pull-right" type="button">Place Order</button> |
Anand Doshi | ab69029 | 2013-06-13 11:21:35 +0530 | [diff] [blame] | 54 | </div> |
| 55 | </div> |
| 56 | {% endblock %} |