Compare commits
8 Commits
53afb4ee6f
...
784deaf9f4
Author | SHA1 | Date | |
---|---|---|---|
784deaf9f4 | |||
3b63cafa79 | |||
0fe672c9da | |||
37ab6e9132 | |||
32b2185e94 | |||
092dba3f4b | |||
4466c9f018 | |||
cccf62bb53 |
@ -1,11 +0,0 @@
|
|||||||
CREATE TABLE IF NOT EXISTS "boat_reservation" (
|
|
||||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
||||||
"boat_id" INTEGER NOT NULL REFERENCES boat(id),
|
|
||||||
"start_date" DATE NOT NULL,
|
|
||||||
"end_date" DATE NOT NULL,
|
|
||||||
"time_desc" TEXT NOT NULL,
|
|
||||||
"usage" TEXT NOT NULL,
|
|
||||||
"user_id_applicant" INTEGER NOT NULL REFERENCES user(id),
|
|
||||||
"user_id_confirmation" INTEGER REFERENCES user(id),
|
|
||||||
"created_at" datetime not null default CURRENT_TIMESTAMP
|
|
||||||
);
|
|
@ -54,19 +54,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
{% if loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %}
|
|
||||||
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
|
||||||
role="alert">
|
|
||||||
<h2 class="h2">Ergo</h2>
|
|
||||||
<div class="p-3">
|
|
||||||
<ul class="list-none ms-2">
|
|
||||||
<li class="py-1">
|
|
||||||
<a href="/ergo" class="block w-100 py-2 hover:text-primary-600">Ergo</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% if "Donau Linz" in loggedin_user.roles and "Unterstützend" not in loggedin_user.roles and "Förderndes Mitglied" not in loggedin_user.roles %}
|
{% if "Donau Linz" in loggedin_user.roles and "Unterstützend" not in loggedin_user.roles and "Förderndes Mitglied" not in loggedin_user.roles %}
|
||||||
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
||||||
role="alert">
|
role="alert">
|
||||||
@ -166,6 +153,19 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if loggedin_user.weight and loggedin_user.sex and loggedin_user.dob %}
|
||||||
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
||||||
|
role="alert">
|
||||||
|
<h2 class="h2">Ergo</h2>
|
||||||
|
<div class="p-3">
|
||||||
|
<ul class="list-none ms-2">
|
||||||
|
<li class="py-1">
|
||||||
|
<a href="/ergo" class="block w-100 py-2 hover:text-primary-600">Ergo</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
|
||||||
role="alert">
|
role="alert">
|
||||||
<h2 class="h2">Allgemein</h2>
|
<h2 class="h2">Allgemein</h2>
|
||||||
|
Loading…
Reference in New Issue
Block a user