use askama::Template;

#[derive(Template)]
#[template(path = "error.html")]
pub(super) struct ErrorTemplate {
    pub(super) all_projects: Vec<String>,
    pub(super) active_project: Option<String>,
    pub(super) status_code: u16,
    pub(super) message: String,
}
