//! HTML templates for the web dashboard.
//!
//! Templates are embedded at compile time using `include_str!`.
//! This module provides functions to serve the templates.
/// The base HTML template with navigation and layout.
pub const BASE_TEMPLATE: &str = include_str!;
/// The index/home page template with dashboard overview.
pub const INDEX_TEMPLATE: &str = include_str!;
/// The workers list page template.
pub const WORKERS_TEMPLATE: &str = include_str!;
/// The tasks list page template with filters and pagination.
pub const TASKS_TEMPLATE: &str = include_str!;
/// The task detail page template with full task info and edit form.
pub const TASK_DETAIL_TEMPLATE: &str = include_str!;
/// The activity feed page template showing recent events.
pub const ACTIVITY_TEMPLATE: &str = include_str!;
/// The file marks coordination page template.
pub const FILE_MARKS_TEMPLATE: &str = include_str!;
/// The metrics dashboard page template with project health overview.
pub const METRICS_TEMPLATE: &str = include_str!;
/// The dependency graph visualization page template.
pub const DEP_GRAPH_TEMPLATE: &str = include_str!;
/// The SQL query interface page template for power users.
pub const SQL_QUERY_TEMPLATE: &str = include_str!;