Add job detail template with execution history and metrics display

- Created a new job_detail.html template extending base.html
- Implemented a macro for rendering nested data structures
- Added sections for job identification, schedule & timing, status, configuration, execution history, and results
- Included a timeline for execution history with visual indicators for job status
- Displayed job metrics including total executions, success rate, and average duration
- Handled cases for displaying results or indicating absence of results based on job status
This commit is contained in:
2026-05-25 19:07:56 +12:00
parent 5bf6b98ccc
commit 82c7712613
11 changed files with 1432 additions and 79 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ from app.api.reporting import router as reporting_router
from app.api.transactions import router as transactions_router
from app.core.settings import get_settings
from app.views.auth import router as auth_router
from app.views.dashboard import router as dashboard_router
from app.views.views import router as dashboard_router
from app.views.docs import router as docs_router