[shopping cart] [start]

This commit is contained in:
Anand Doshi
2013-06-13 11:21:35 +05:30
parent a2e2d4bd19
commit ab69029d4e
7 changed files with 180 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
{% extends "app/website/templates/html/page.html" %}
{% block javascript %}
{% include "app/website/templates/js/cart.js" %}
{% endblock %}
{% set title="Shopping Cart" %}
{% block content %}
<div class="col col-lg-12">
<h2>Shopping Cart</h2>
<hr>
<div id="cart-added-items">
<!-- list of items in the cart will be generated using javascript -->
</div>
</div>
{% endblock %}