Top "Wtforms" questions

WTForms is a flexible forms validation and rendering library for Python.

Flask - wtforms: Validation always false

First, I'm new to python and Flask, so I'm sorry if my question is dumb. I search it but never …

python validation flask wtforms
Render an editable table using Flask, Jinja2 templates, then process the form data returned

I'm using Flask and Jinja2 and I need to make an editable table with multiple rows. This is what the …

python flask jinja2 wtforms
WTForms support for input readonly attribute?

Here they say it's not supported out of the box. Do you know a way to make HTML input form …

python html forms wtforms readonly-attribute
Wtforms, add a class to a form dynamically

is there a way i could send a form's (css) class from python? For example: class Company(Form): companyName = TextField(…

python css flask wtforms
Recommendation for python form validation library

I would like a form validation library that 1.separate html generation from form validation; 2.validation errors can be easily serialized, …

python validation formencode wtforms toscawidgets
Disabled field is considered for validation in WTForms and Flask

I have some fields in page disabled as for example:(using jinja2 templating system) <html> <body> &…

python flask jinja2 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
Get selected text from a form using wtforms SelectField

This is a question upon the use of wtforms SelectField. Once the form submitted, I wish to extract selected text. …

python flask wtforms
I'm having problems with wtforms selectfields when i use a POST with Flask

I'm pretty new to wtforms and flask and was messing around with selectfields and got an error. The form itself …

python flask wtforms flask-wtforms
rendering forms with flask + wtform

code in question: from flask import Blueprint, render_template, abort from flask.ext.wtf import Form import os from jinja2 …

python flask wtforms