Ruderassistent des Rudervereins Donau Linz https://app.rudernlinz.at
Go to file
2023-03-14 17:09:12 +01:00
migration push 2023-03-14 14:00:53 +01:00
src fix 2023-03-14 17:09:12 +01:00
static rebase 2023-03-05 16:33:02 +01:00
templates push 2023-03-14 16:49:32 +01:00
.env initial push 2023-02-08 16:25:06 +01:00
.gitignore [TASK] add .history to gitignore 2023-03-04 11:40:43 +01:00
Cargo.lock update dependencies 2023-03-12 13:49:53 +01:00
Cargo.toml add logging 2023-03-04 11:20:12 +01:00
db.sqlite push 2023-03-14 14:00:53 +01:00
db.txt push 2023-03-14 16:49:32 +01:00
mod.rs push 2023-02-09 12:16:04 +01:00
prelude.rs push 2023-02-09 12:16:04 +01:00
README.md push 2023-03-14 14:00:53 +01:00
rot.service add service + update file 2023-03-04 11:52:11 +01:00
update.sh add service + update file 2023-03-04 11:52:11 +01:00

Edge case

  • Trip in the morning on usi rowing day
  • after N people (/ cox) -> red highlighted -> queue

Fancy

  • Every cox can define which boats they use
  • Link for specific trip
  • Basic auth (with e.g. ekrv) to prevent spam bots? (Or on first login there are 2 input fields: name + e.g. name of "strom")

DB

  • users
    • id: i32
    • name: String
    • pw: Option
    • is_cox: bool
    • is_admin: bool
  • day
    • day: chrono::NaiveDate
    • planned_amount_cox: i32
    • planned_starting_time: Option
    • open_registration: bool
  • trip
    • day: String
    • user_id: i32
    • cox_id: Option
    • begin: Option
    • created: chrono::DateTime