commit 05c22192fa8d377cb99f38d4e86ed5ad4eabe4c1
parent 711718c8a5443d419b48932a822a79d38f798ab6
Author: Friedel Schön <[email protected]>
Date: Sun, 17 Apr 2022 19:56:13 +0200
course bug
Diffstat:
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/pgmles/routes.py b/pgmles/routes.py
@@ -155,7 +155,7 @@ def course_overview():
if current_user.type not in [ "admin", "teacher" ]:
flash('U mag deze website niet bereiken', 'error')
return redirect('/')
- courses = [ (c, User.query.filter_by(id=c.id).first() ) for c in Course.query.all() ]
+ courses = [ (c, User.query.filter_by(id=c.teacher_id).first() ) for c in Course.query.all() ]
return render_template('course_overview.html', calendar=make_calendar(), legend='Lesoverzicht', courses=courses)
""" new_course.html route """
diff --git a/pgmles/site.db b/pgmles/site.db
Binary files differ.
diff --git a/readme.md b/readme.md
@@ -16,6 +16,7 @@ $ pip3 install flask wtforms flask_sqlalchemy flask-wtf email_validator flask-bc
$ python run.py
```
+
## Uitleg
### Bestanden
@@ -60,3 +61,12 @@ $ python run.py
> <sup>4</sup> bij gebruiker zoeken moet de naam overeinkomen met de gebruikers naam, nog geen echte zoek-functie
> <sup>5</sup> betekent: zijn wachtwoord is dan gelijk aan zijn e-mail om in te loggen en zijn wachtwoord weer te veranderen, als iemand zijn wachtwoord is vergeten
+
+
+## Test Profielen
+
+| type | e-mail | password |
+|---------|-------------------|----------|
+| klant | [email protected] | `hallo` |
+| docent | [email protected] | `hallo` |
+| admin | [email protected] | `hallo` |