Top "Flask-wtforms" questions

Flask-WTF offers simple integration with WTForms.

WTForm: FieldList with SelectField, how do I render?

I have this order form which allows my users to create an order. An order consists of multiple tuples of (…

python flask wtforms flask-wtforms
wtforms raise a validation error after the form is validated

I have a registration form that collects credit card info. The workflow is as follows: User enters registration data and …

python flask wtforms flask-wtforms
wtforms, CSRF, flask, FieldList

I'm having trouble passing through validation when using a FieldList with WTForms. I keep getting this error. {'csrf_token': [u'CSRF …

flask csrf flask-wtforms
Flask-Restful POST fails due CSRF protection of Flask-WTF

I am using normal flask web + flask-restful. So I need CSRF protection for web but not for REST. The moment …

python rest flask flask-wtforms flask-restful
WTForms creating a custom widget

The WTForms documentation is woefully inadequate, they don't even show you one single example of a custom widget that isn't …

python flask wtforms flask-wtforms
Flask WTForms: Difference between DataRequired and InputRequired

What is difference between DataRequired and InputRequired in wtforms.valiadators I have some fields in my signup form : username password …

python flask wtforms flask-wtforms
Custom validators in WTForms using Flask

I need to make a custom validator in WTForms where the input is to be: number:number - e.g. 2:1 …

python validation flask flask-wtforms
A Complete Many-to-One Example Using Flask, WTForm, SQLAlchemy, and Jinja2

Here is my HTML dropdown menu. The value is the primary key of the child table. <select id="category" …

python flask flask-sqlalchemy wtforms flask-wtforms
Flask-WTF: CSRF token missing

What seemed like a simple bug - a form submission that won't go through due to a "CSRF token missing" …

python session flask wtforms flask-wtforms
Flask wtform forms.validate_on_submit() is always false

I have looked at other similar problems on here and a few other places, but the solutions don't seem to …

python-2.7 flask-wtforms