Spaces:
Sleeping
Sleeping
Create summary.html
Browse files- templates/summary.html +10 -0
templates/summary.html
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="order-summary">
|
2 |
+
<h2>Order Summary</h2>
|
3 |
+
<ul>
|
4 |
+
{% for item in selected_items %}
|
5 |
+
<li>{{ item.name }} - ₹{{ item.price }} (Portion: {{ item.portion }})</li>
|
6 |
+
{% endfor %}
|
7 |
+
</ul>
|
8 |
+
<h3>Total: ₹{{ total_price }}</h3>
|
9 |
+
<button>Place Order</button>
|
10 |
+
</div>
|