Feat(SQL, UI): 1. Calc and Get Many Stored Procedures created for Weather, Lighting Level, Assessment, Distraction Type, Distraction Intensity Level, Distraction, Bribe, Assessment Command Modality Link, Response Quality Metric, Obedience Level, and Assessment Response. \n 2. Assessments and Assessment pages created with data loading and hooked up, but not saving.

This commit is contained in:
2025-07-24 16:48:18 +01:00
parent 6bb3a77a34
commit fad5336cc4
137 changed files with 10442 additions and 1116 deletions

2
app.py
View File

@@ -17,6 +17,7 @@ Initializes the Flask application, sets the configuration based on the environme
# IMPORTS
# internal
from config import app_config, Config
from controllers.dog.assessment import routes_dog_assessment
from controllers.dog.button_icon import routes_dog_button_icon
from controllers.dog.command import routes_dog_command
from controllers.dog.command_button_link import routes_dog_command_button_link
@@ -125,6 +126,7 @@ app.register_blueprint(routes_dog_home)
app.register_blueprint(routes_dog_location)
app.register_blueprint(routes_dog_button_icon)
app.register_blueprint(routes_dog_command_button_link)
app.register_blueprint(routes_dog_assessment)
app.register_blueprint(routes_legal)
app.register_blueprint(routes_user)