This commit is contained in:
2025-04-22 07:14:37 +04:00
parent 310a5d956f
commit b6dd04a6aa
2 changed files with 28 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ impl FlowController {
Ok(HttpResponse::Ok().content_type("text/html").body(rendered))
} else {
let mut ctx = tera::Context::new();
ctx.insert("active_page", "flows");
ctx.insert("error", "Flow not found");
let rendered = tmpl.render("error.html", &ctx)