Replace Rinja by askama

This commit is contained in:
Greg Burri 2025-03-26 13:19:16 +01:00
parent 3089ede6eb
commit dc40a057ac
11 changed files with 67 additions and 79 deletions

View file

@ -67,7 +67,7 @@ enum AppError {
Database(#[from] db::DBError),
#[error("Template error: {0}")]
Render(#[from] rinja::Error),
Render(#[from] askama::Error),
}
type Result<T> = std::result::Result<T, AppError>;