add: move database drivers to oiseau

This commit is contained in:
trisua 2025-06-08 14:15:42 -04:00
parent 40fce4bc77
commit 81036e3733
57 changed files with 638 additions and 1106 deletions

View file

@ -123,7 +123,7 @@ pub async fn render_error(
user: &Option<User>,
) -> String {
let lang = get_lang!(jar, data.0);
let mut context = initial_context(&data.0.0, lang, user).await;
let mut context = initial_context(&data.0.0.0, lang, user).await;
context.insert("error_text", &e.to_string());
data.1.render("misc/error.html", &context).unwrap()
}