Editor Support

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Jason
2026-05-05 15:42:30 -05:00
parent 9f7c078ccc
commit 29154bd651
32 changed files with 3698 additions and 17 deletions
+3
View File
@@ -19,10 +19,12 @@ app.config['SESSION_COOKIE_SAMESITE'] = 'Lax'
from blueprints.auth import auth_bp
from blueprints.users import users_bp
from blueprints.products import products_bp
from blueprints.canvas import canvas_bp
app.register_blueprint(auth_bp)
app.register_blueprint(users_bp)
app.register_blueprint(products_bp)
app.register_blueprint(canvas_bp)
# Comment Change
# Home route
@@ -44,6 +46,7 @@ def home():
<p>Current Location: {session.get('currentLocation', 'Not selected')}</p>
<ul>
<li><a href="{url_for('products.product_finder')}">🔍 Product Finder Quiz</a></li>
<li><a href="{url_for('products.product_manager')}">📦 Manage Products</a></li>
<li><a href="{url_for('users.user_manager')}">👥 Manage Users</a></li>
<li><a href="{url_for('auth.select_location_page')}">📍 Change Location</a></li>
<li><a href="{url_for('auth.logout')}">🚪 Logout</a></li>