don't show external cox as cox #343

Merged
philipp merged 1 commits from staging into main 2024-04-06 18:40:35 +02:00
Showing only changes of commit 934795abd8 - Show all commits

View File

@ -67,6 +67,7 @@ async fn steering(db: &State<SqlitePool>, user: User, flash: Option<FlashMessage
let mut coxes = User::all_with_role(db, &Role::find_by_name(db, "cox").await.unwrap()).await;
coxes.retain(|user| !bootskundige.contains(&user)); // Remove bootskundige from coxes list
coxes.retain(|user| user.name != String::from("Externe Steuerperson"));
context.insert("coxes", &coxes);
context.insert("bootskundige", &bootskundige);