Numberplate shows on Dash

Added logs.html for the logs page
Changed dashboard.html so the numberplates show on the dashboard
Moved models.py to to the dashboard folder
This commit is contained in:
DaanoGames
2025-05-22 13:16:30 +02:00
parent c9eb18fd0b
commit 2f7a499c91
7 changed files with 58 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
from flask import Blueprint, request, jsonify
from application import db
from application.models import AllowedPlate, LoggedItem
from application.dashboard.models import AllowedPlate, LoggedItem
from application.api.image_processing import process_image
from datetime import datetime
import asyncio