views.rs

 1use askama::Template;
 2
 3#[derive(Template)]
 4#[template(path = "error.html")]
 5pub(super) struct ErrorTemplate {
 6    pub(super) all_projects: Vec<String>,
 7    pub(super) active_project: Option<String>,
 8    pub(super) status_code: u16,
 9    pub(super) message: String,
10}