show second button in winter
All checks were successful
CI/CD Pipeline / test (push) Successful in 12m34s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
2024-10-19 22:16:28 +02:00
parent f71c83dc3f
commit f801606899
2 changed files with 15 additions and 1 deletions

View File

@ -1,6 +1,6 @@
use std::{fs::OpenOptions, io::Write};
use chrono::Local;
use chrono::{Datelike, Local};
use rocket::{
catch, catchers,
fairing::{AdHoc, Fairing, Info, Kind},
@ -63,6 +63,11 @@ async fn index(db: &State<SqlitePool>, user: User, flash: Option<FlashMessage<'_
context.insert("last_trips", &last_trips);
}
let date = chrono::Utc::now();
if date.month() <= 3 || date.month() >= 10 {
context.insert("show_quick_ergo_button", "yes");
}
context.insert("achievements", &Achievements::for_user(db, &user).await);
context.insert("notifications", &Notification::for_user(db, &user).await);
context.insert("loggedin_user", &UserWithDetails::from_user(user, db).await);