commit 5233c9df60c61921a69d93f35c8e20e0c51bcfa1
parent 400cb70faad9e9ad0ad4a40a6d191745aecac4d7
Author: Friedel Schön <[email protected]>
Date: Sun, 17 Apr 2022 12:26:17 +0200
little changes to routes.py
Diffstat:
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/pgmles/routes.py b/pgmles/routes.py
@@ -72,6 +72,8 @@ def login():
user = User.query.filter_by(email=form.email.data).first()
if user and bcrypt.check_password_hash(user.password, form.password.data):
login_user(user, remember=form.remember.data)
+ if bcrypt.check_password_hash(user.password, form.email.data):
+ flash('Wij zullen aanbevelen uw wachtwoord weer te veranderen', 'warning')
next_page = request.args.get('next')
return redirect(next_page if next_page else '/')
else:
@@ -99,7 +101,7 @@ def save_picture(form_picture):
return picture_fn
""" account.html route """
[email protected]("/account", methods=[ 'GET', 'POST' ])
[email protected]("/user/self", methods=[ 'GET', 'POST' ])
@login_required
def account():
form = UpdateAccountForm()
@@ -112,7 +114,7 @@ def account():
if form.password.data:
current_user.password = bcrypt.generate_password_hash(form.password.data).decode('utf-8')
db.session.commit()
- flash('Uw profiel werd bewerkt!', 'success')
+ flash('Uw profiel is bewerkt!', 'success')
return redirect(url_for('account'))
elif request.method == 'GET':
form.username.data = current_user.username
@@ -120,15 +122,6 @@ def account():
image_file = url_for('static', filename='profile_pics/' + current_user.image_file)
return render_template('account.html', calendar=make_calendar(), title='Profiel', image_file=image_file, form=form)
-""" course_overview.html route """
[email protected]("/courses")
-@login_required
-def course_overview():
- if current_user.type not in [ "admin", "teacher" ]:
- abort(403)
- courses = [ (c, User.query.filter_by(id=c.id).first() ) for c in Course.query.all() ]
- return render_template('course_overview.html', calendar=make_calendar(), title='Lesoverzicht', courses=courses)
-
""" course.html (course-info) route """
@app.route("/course/<int:course_id>", methods=[ 'GET', 'POST' ])
def course(course_id):
@@ -155,6 +148,15 @@ def course(course_id):
course = Course.query.get_or_404(course_id)
return render_template('course.html', calendar=make_calendar(), title=course.name, course=course, sub_form=sub_form, unsub_form=unsub_form, subscribed=subscribed is not None, teachers=teachers)
+""" course_overview.html route """
[email protected]("/courses")
+@login_required
+def course_overview():
+ if current_user.type not in [ "admin", "teacher" ]:
+ abort(403)
+ courses = [ (c, User.query.filter_by(id=c.id).first() ) for c in Course.query.all() ]
+ return render_template('course_overview.html', calendar=make_calendar(), title='Lesoverzicht', courses=courses)
+
""" new_course.html route """
@app.route("/course/new", methods=['GET', 'POST'])
@login_required