- Added FastAPI router for time tracking views including dashboard, wizard, and orders. - Created HTML templates for the time tracking wizard with responsive design and Bootstrap integration. - Developed SQL migration script for the time tracking module, including tables for customers, cases, time entries, orders, and audit logs. - Introduced a script to list all registered routes, focusing on time tracking routes. - Added test script to verify route registration and specifically check for time tracking routes.
6 lines
87 B
Python
6 lines
87 B
Python
"""Time Tracking Module - Backend"""
|
|
|
|
from .router import router
|
|
|
|
__all__ = ["router"]
|