From 0c4f67c51846815fbd080ded7de740f57fcde506 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 3 Jun 2021 23:46:25 +0530 Subject: moved flash form function --- app/views/main.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'app/views') 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 -- cgit v1.2.3