geethareddy commited on
Commit
46e47a4
·
verified ·
1 Parent(s): 73ef0b9

Create summary.html

Browse files
Files changed (1) hide show
  1. 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>