Compare commits

..

No commits in common. "01fdfcae99a4412e59d145f7c284b022370ea878" and "3272833b2d7c715b157b907d6754048b1ec958a0" have entirely different histories.

2 changed files with 1 additions and 15 deletions

View File

@ -1,6 +1,6 @@
use std::{fs::OpenOptions, io::Write};
use chrono::{Datelike, Local};
use chrono::Local;
use rocket::{
catch, catchers,
fairing::{AdHoc, Fairing, Info, Kind},
@ -63,11 +63,6 @@ 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);

View File

@ -12,15 +12,6 @@
<span class="text-xl px-3">Geplante Ausfahrten</span>
</a>
</div>
{% if show_quick_ergo_button %}
<div class="m-auto">
<a href="/ergo"
class="btn btn-primary flex items-center justify-center">
{% include "includes/rowing-icon" %}
<span class="text-xl px-3">Ergo-Challenge</span>
</a>
</div>
{% endif %}
{% if notifications %}
<div id="notification"
class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"