diff options
Diffstat (limited to 'app/views/main.py')
-rw-r--r-- | app/views/main.py | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/app/views/main.py b/app/views/main.py index 15f7db9..2460d39 100644 --- a/app/views/main.py +++ b/app/views/main.py @@ -1,7 +1,8 @@ from app import app from app.forms.app_forms import MyForm from flask import render_template, flash - +from app.views import auth +from app.misc_func import flash_errors theme = "original" @app.route("/") @@ -15,12 +16,4 @@ def contact_us(): if form.validate_on_submit(): return "Wuhu" flash_errors(form) - return render_template("contact.html",form=form) - -def flash_errors(form): - for field, errors in form.errors.items(): - for error in errors: - flash(u"Error in the %s field - %s" % ( - getattr(form, field).label.text, - error - ), 'danger')
\ No newline at end of file + return render_template("contact.html",form=form)
\ No newline at end of file |