Implemented draft for contacts

This commit is contained in:
2025-01-08 17:09:45 +01:00
parent 8f96346a6b
commit 59eebbeb92
7 changed files with 502 additions and 60 deletions

View File

@@ -56,7 +56,7 @@ def reload_config_in_dev():
@app.route('/')
def index():
return render_template("pages/index.html.j2", cards=config_data.get("cards", []), networks=config_data.get("networks", []), company=config_data["company"])
return render_template("pages/index.html.j2", cards=config_data.get("cards", []), networks=config_data.get("networks", []), company=config_data["company"], navigation=config_data["navigation"])
@app.route('/imprint')
def imprint():