Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,8 @@ from order import order_blueprint # Same for user blueprint
|
|
11 |
from orderhistory import orderhistory_blueprint
|
12 |
from user_details import user_details_blueprint
|
13 |
from customdish import customdish_blueprint
|
|
|
|
|
14 |
from datetime import datetime
|
15 |
from datetime import datetime
|
16 |
import pytz # Library to handle timezone conversions
|
@@ -42,7 +44,7 @@ app.register_blueprint(menu_blueprint)
|
|
42 |
app.register_blueprint(order_blueprint)
|
43 |
app.register_blueprint(orderhistory_blueprint, url_prefix='/orderhistory')
|
44 |
app.register_blueprint(customdish_blueprint, url_prefix='/customdish')
|
45 |
-
|
46 |
|
47 |
|
48 |
@app.route("/")
|
|
|
11 |
from orderhistory import orderhistory_blueprint
|
12 |
from user_details import user_details_blueprint
|
13 |
from customdish import customdish_blueprint
|
14 |
+
from combined_summary import combined_summary_blueprint
|
15 |
+
|
16 |
from datetime import datetime
|
17 |
from datetime import datetime
|
18 |
import pytz # Library to handle timezone conversions
|
|
|
44 |
app.register_blueprint(order_blueprint)
|
45 |
app.register_blueprint(orderhistory_blueprint, url_prefix='/orderhistory')
|
46 |
app.register_blueprint(customdish_blueprint, url_prefix='/customdish')
|
47 |
+
app.register_blueprint(combined_summary_blueprint, url_prefix='/combined_summary')
|
48 |
|
49 |
|
50 |
@app.route("/")
|