Feat: Dogs page.

This commit is contained in:
2025-08-09 10:44:33 +01:00
parent d5e5e1a111
commit 77393d2057
46 changed files with 1718 additions and 640 deletions

2
app.py
View File

@@ -31,6 +31,7 @@ from controllers.dog.dog_command_link import routes_dog_dog_command_link
from controllers.dog.home import routes_dog_home
from controllers.dog.location import routes_dog_location
from controllers.legal.legal import routes_legal
from controllers.user.company import routes_user_company
from controllers.user.user import routes_user
from extensions import db, csrf, mail, oauth
from helpers.helper_app import Helper_App
@@ -135,6 +136,7 @@ app.register_blueprint(routes_dog_assessment)
app.register_blueprint(routes_dog_calendar_entry)
app.register_blueprint(routes_legal)
app.register_blueprint(routes_user)
app.register_blueprint(routes_user_company)
@app.template_filter('console_log')