Aman Verma
Aman Verma
i was trying form validation and custom message(error) as given in tutorial- [https://flask-wtf.readthedocs.io/en/1.0.x/quickstart/#validating-forms](url) everything is fine except it's not showing the list of error. When same thing i tried with...
Hi, I want to understand if i can expose a function on RegisterForm ``` class ExtendRegisterForm(FlaskForm): admin = BooleanField('Admin') def create_admin(self): admin_role = user_datastore.find_or_create_role('admin') user_datastore.add_role_to_user(current_user, admin_role) db.session.commit() ``` and use...