Update app.py
Browse files
app.py
CHANGED
|
@@ -120,7 +120,7 @@ def login():
|
|
| 120 |
return render_template("login.html")
|
| 121 |
|
| 122 |
# Assuming you're fetching the order details and processing them like this
|
| 123 |
-
@
|
| 124 |
def combined_summary():
|
| 125 |
email = session.get('user_email')
|
| 126 |
if not email:
|
|
|
|
| 120 |
return render_template("login.html")
|
| 121 |
|
| 122 |
# Assuming you're fetching the order details and processing them like this
|
| 123 |
+
@app.route('/combined_summary')
|
| 124 |
def combined_summary():
|
| 125 |
email = session.get('user_email')
|
| 126 |
if not email:
|