Add booking type options and enhance booking logic in terminplan.html; create test for terminplan endpoint

This commit is contained in:
2026-04-19 16:25:30 +02:00
parent 4c586abee0
commit d2f882ed61
3 changed files with 53 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
from app import app
with app.test_client() as client:
with client.session_transaction() as sess:
sess['username'] = 'admin'
sess['admin'] = True
resp = client.get('/terminplan')
print("Status:", resp.status_code)