Add admin dashboard and tool icons

This commit is contained in:
Nirodan
2026-01-22 12:18:27 +01:00
parent a944f7dd5d
commit 0699158486
8 changed files with 448 additions and 3 deletions
+2
View File
@@ -10,6 +10,7 @@ from util.db_config import is_configured, load_config, test_connection
from util.setup_routes import setup_blueprint
from auth import auth_bp
from tools import md5_blueprint
from admin import admin_bp
app = Flask(__name__, template_folder="templates")
@@ -18,6 +19,7 @@ app = Flask(__name__, template_folder="templates")
app.register_blueprint(setup_blueprint)
app.register_blueprint(auth_bp)
app.register_blueprint(md5_blueprint)
app.register_blueprint(admin_bp)
# 🌐 React-Frontend ausliefern
@app.route('/', defaults={'path': ''})