clean /log by only showing boat reservation for the next 3 days
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
CI/CD Pipeline / test (push) Has been cancelled

This commit is contained in:
Philipp Hofer
2026-04-30 11:39:54 +02:00
parent 09defdc1f4
commit 79687807f2
5 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ async fn index(db: &SqlitePool, flash: Option<FlashMessage<'_>>, mut context: Co
context.insert("planned_trips", &Trip::get_for_today(db).await);
context.insert(
"reservations",
&BoatReservation::all_future_with_groups(db).await,
&BoatReservation::next_future_with_groups(db).await,
);
context.insert("coxes", &coxes);
context.insert("users", &users);