mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 19:29:10 +00:00
[shopping cart] [start]
This commit is contained in:
17
website/templates/pages/cart.html
Normal file
17
website/templates/pages/cart.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user