Merge commit '95e1ea302884fa1214950b6c4005525f7469ac58' into ergo-styling

This commit is contained in:
Marie Birner 2023-11-03 14:31:14 +01:00
commit 150a86c2f1
4 changed files with 18 additions and 24 deletions

View File

@ -124,7 +124,7 @@ pub enum LogbookCreateError {
impl From<LogbookUpdateError> for LogbookCreateError { impl From<LogbookUpdateError> for LogbookCreateError {
fn from(value: LogbookUpdateError) -> Self { fn from(value: LogbookUpdateError) -> Self {
return match value { match value {
LogbookUpdateError::NotYourEntry => LogbookCreateError::NotYourEntry, LogbookUpdateError::NotYourEntry => LogbookCreateError::NotYourEntry,
LogbookUpdateError::TooManyRowers(a, b) => LogbookCreateError::TooManyRowers(a, b), LogbookUpdateError::TooManyRowers(a, b) => LogbookCreateError::TooManyRowers(a, b),
LogbookUpdateError::RowerCreateError(a, b) => { LogbookUpdateError::RowerCreateError(a, b) => {
@ -140,7 +140,7 @@ impl From<LogbookUpdateError> for LogbookCreateError {
LogbookUpdateError::UserNotAllowedToUseBoat => { LogbookUpdateError::UserNotAllowedToUseBoat => {
LogbookCreateError::UserNotAllowedToUseBoat LogbookCreateError::UserNotAllowedToUseBoat
} }
}; }
} }
} }
@ -429,7 +429,7 @@ ORDER BY departure DESC
return Err(LogbookUpdateError::SteeringPersonNotInRowers); return Err(LogbookUpdateError::SteeringPersonNotInRowers);
} }
if !boat.shipmaster_allowed(&user).await && self.shipmaster != user.id { if !boat.shipmaster_allowed(user).await && self.shipmaster != user.id {
//second part: //second part:
//shipmaster has //shipmaster has
//entered a //entered a

View File

@ -67,11 +67,7 @@ async fn reset(db: &State<SqlitePool>, _user: AdminUser) -> Flash<Redirect> {
} }
#[get("/")] #[get("/")]
async fn index( async fn index(db: &State<SqlitePool>, user: User, flash: Option<FlashMessage<'_>>) -> Template {
db: &State<SqlitePool>,
user: NonGuestUser,
flash: Option<FlashMessage<'_>>,
) -> Template {
let users = User::ergo(db).await; let users = User::ergo(db).await;
let thirty = sqlx::query_as!( let thirty = sqlx::query_as!(
@ -94,7 +90,7 @@ async fn index(
if let Some(msg) = flash { if let Some(msg) = flash {
context.insert("flash", &msg.into_inner()); context.insert("flash", &msg.into_inner());
} }
context.insert("loggedin_user", &user.user); context.insert("loggedin_user", &user);
context.insert("users", &users); context.insert("users", &users);
context.insert("thirty", &thirty); context.insert("thirty", &thirty);
context.insert("dozen", &dozen); context.insert("dozen", &dozen);
@ -113,7 +109,7 @@ pub struct ErgoToAdd<'a> {
async fn new_thirty( async fn new_thirty(
db: &State<SqlitePool>, db: &State<SqlitePool>,
mut data: Form<ErgoToAdd<'_>>, mut data: Form<ErgoToAdd<'_>>,
created_by: NonGuestUser, created_by: User,
) -> Flash<Redirect> { ) -> Flash<Redirect> {
let user = User::find_by_id(db, data.user as i32).await.unwrap(); let user = User::find_by_id(db, data.user as i32).await.unwrap();
@ -139,10 +135,7 @@ async fn new_thirty(
Log::create( Log::create(
db, db,
format!( format!("{} created thirty-ergo entry: {data:?}", created_by.name),
"{} created thirty-ergo entry: {data:?}",
created_by.user.name
),
) )
.await; .await;
@ -153,7 +146,7 @@ async fn new_thirty(
async fn new_dozen( async fn new_dozen(
db: &State<SqlitePool>, db: &State<SqlitePool>,
mut data: Form<ErgoToAdd<'_>>, mut data: Form<ErgoToAdd<'_>>,
created_by: NonGuestUser, created_by: User,
) -> Flash<Redirect> { ) -> Flash<Redirect> {
let user = User::find_by_id(db, data.user as i32).await.unwrap(); let user = User::find_by_id(db, data.user as i32).await.unwrap();
@ -179,10 +172,7 @@ async fn new_dozen(
Log::create( Log::create(
db, db,
format!( format!("{} created dozen-ergo entry: {data:?}", created_by.name),
"{} created dozen-ergo entry: {data:?}",
created_by.user.name
),
) )
.await; .await;

View File

@ -217,12 +217,10 @@ async fn create_kiosk(
User::find_by_id(db, boat.owner.unwrap() as i32) User::find_by_id(db, boat.owner.unwrap() as i32)
.await .await
.unwrap() .unwrap()
} else if let Some(shipmaster) = data.shipmaster {
User::find_by_id(db, shipmaster as i32).await.unwrap()
} else { } else {
if let Some(shipmaster) = data.shipmaster { User::find_by_id(db, data.rowers[0] as i32).await.unwrap()
User::find_by_id(db, shipmaster as i32).await.unwrap()
} else {
User::find_by_id(db, data.rowers[0] as i32).await.unwrap()
}
}; };
Log::create( Log::create(
db, db,

View File

@ -101,6 +101,12 @@
</a> </a>
</div> </div>
</div> </div>
{% else %}
{% if loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %}
<a href="/ergo">
Ergo
</a>
{% endif %}
{% endif %} {% if loggedin_user.is_admin %} {% endif %} {% if loggedin_user.is_admin %}
<a <a
href="/admin/user" href="/admin/user"