fix-query #74

Merged
philipp merged 5 commits from fix-query into staging 2023-11-20 23:45:23 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ ORDER BY last_access DESC
"
SELECT id, name, pw, is_cox, is_admin, is_guest, deleted, last_access, is_tech, dob, weight, sex
FROM user
WHERE deleted = 0 AND dob is not null and weight is not null and sex is not null
WHERE deleted = 0 AND dob != '' and weight != '' and sex != ''
ORDER BY name
"
)

View File

@ -8,7 +8,7 @@
{{ macros::alert(message=flash.1, type=flash.0, class="sm:col-span-2 lg:col-span-3") }}
{% endif %}
<h1 class="h1 sm:col-span-2 lg:col-span-3">Ausfahrten!</h1>
<h1 class="h1 sm:col-span-2 lg:col-span-3">Ausfahrten</h1>
{% include "includes/buttons" %}