Top "Flask-wtforms" questions

Flask-WTF offers simple integration with WTForms.

populate WTForms select field using value selected from previous field

New to this, trying to build an app following a well known Flask tutorial, using Flask-bootstrap, Flask-wtforms, Jinja etc I …

flask flask-wtforms flask-bootstrap
How to actually upload a file using Flask WTF FileField

In my forms.py file I have I have class myForm(Form): fileName = FileField() In my views.py file I …

python python-2.7 flask flask-wtforms
Flask & WTForms: How to make a form with multiple submit buttons?

Imagine I need to build a travel planning form like this: Going from [_Picadily_Circus____] Going to [_Marylebone_____] (Starting by) (…

python flask wtforms flask-wtforms
Get an uploaded file from a WTForms field

In the Flask docs, the file upload example uses <input type="file" name="file"> then request.files['file'] …

python flask wtforms flask-wtforms
How to make a RadioField in Flask?

I have a form with a TextField, FileField, and I want to add a RadioField. I'd like to have a …

python python-2.7 flask flask-wtforms
ImportError: No module named flask_wtf

I am getting the error, ImportError: No module named flask_wtf. I tried every possible solution. I installed flask-wrf using …

python python-2.7 flask flask-wtforms
Flask - redirect url_for Error

Am having errors thrown in my flask application for the below Code. @@app.route('/') ..... return redirect(url_for(…

python flask-wtforms flask-extensions flask
How do I make my flask wtforms SelectField look like a dropdown?

I've created a SelectField like so: class Inputs(Form): myChoices = #number of choices myField = SelectField(u'Field name', choices = myChoices, validators = […

python flask flask-wtforms
Add input fields dynamically with wtforms

I'm not quite sure how approach this matter. I hope i get there. For example I have a table full …

python flask jinja2 wtforms flask-wtforms