WTForms is a forms validation and rendering library for python web development.
9
votes
4answers
2k views
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, eg. dumped as a json object
What form validation library ...
6
votes
1answer
412 views
Unique validator in WTForms with SQLAlchemy models
I defined some WTForms forms in an application that uses SQLALchemy to manage database operations.
That exemple form is managing Categories:
class CategoryForm(Form):
name = TextField(u'name', ...
4
votes
1answer
109 views
How to localize my wtform?
I have a form that I want to localize from English to many languages. I can do it either with gettext or the datastore and I've chosen gettext for performance but I could also use the datastore to ...
4
votes
2answers
698 views
Working with WTForms FieldList
I use WTForms with Flask via the Flask.WTF extension. This question isn't Flask-specific, though.
WTForms includes a FieldList field for lists of fields. I'd like to use this to make a form where ...
4
votes
1answer
182 views
wtforms Form class subclassing and field ordering
I have a UserForm class:
class UserForm(Form):
first_name = TextField(u'First name', [validators.Required()])
last_name = TextField(u'Last name', [validators.Required()])
middle_name = ...
4
votes
2answers
401 views
Should I use wtforms with Pylons?
I am migrating my django project to pylons and am up to form validations.
Is the builtin formencode module sufficient for form validation or is WTforms a "better" option? What would be the advatanges ...
3
votes
2answers
76 views
If I receive post data with Flask, put that data into a WTForms form and it successfully validates, is it safe from SQL injection attacks?
I am using Flask, WTForms, and the OurSQL MySQL library for my app. I receive post data from the request.form variable. I put that into a WTForms form object. I call validate() on that form, and ...
3
votes
1answer
148 views
can't append_entry FieldList in Flask-wtf more than one
I have form with flask-wtf for upload some image, also file field can be
multiple
my form:
class ComposeForm(Form):
attachment = FieldList(FileField(_('file')), _('attachment'))
...
3
votes
2answers
304 views
Generic CRUD admin for Flask, with WTForms?
are there any generic CRUD admin for Flask based on WTForms?
Currently we are building a hybrid backend system where admin must CRUD lots of data from various source, MongoDB, Redis, ini file, ...
3
votes
1answer
92 views
How to render tags in Flask/GAE?
I am new to all these and trying to figure out how to make a simple blog post with tags.
Here are the relevant parts:
Model:
class Post(db.Model):
title = db.StringProperty(required = True)
...
3
votes
1answer
110 views
How does one omit the closing slash on <input> elements using WTForms?
I've been noticing that WTForms (and Flask-WTF) output <input> elements with a closing slash like so:
<input name="text" type="text" value="" />
My documents are HTML5 and therefore need ...
2
votes
1answer
206 views
HTTP post with GAE (and WTForms)
Hi how can I get the variables in a HTTP post with WTForms when the post is done with a blobstoreuploadhandler and preferably also with i18n localized messages for validation?
This is my code that is ...
2
votes
1answer
128 views
WTForms - display property value instead of HTML field
I want to re-use a template I have with my WTForms form:
<th>${form.name.label}</th>
<td>${form.name()}</td>
...
However, on my edit page, I want the input fields to display ...
2
votes
2answers
149 views
WTForms “too many values to unpack” with SelectField
I'm using WTForms and I'm trying to display a SelectField, but I get the following error:
>>> form.status()
Traceback (most recent call last):
File "<stdin>", line 1, in ...
2
votes
1answer
401 views
WTForms: How to select options in SelectMultipleField?
Choices can be set using form.myfield.choices=[("1","Choice1"), ("2","Choice2")]
What is the way to set the selected option?
2
votes
1answer
489 views
WTForms error:TypeError: formdata should be a multidict-type wrapper
from wtforms import Form, BooleanField, TextField, validators,PasswordField
class LoginForm(Form):
username = TextField('Username', [validators.Length(min=4, max=25)])
password = ...
1
vote
1answer
62 views
Validating many fields as they were one?
My input is rather strangely formatted but according to spec:
User should input the ID in 4 fields(!) where the id is the form 460 000 005 001 where 46 is a country code and the right part is the ...
1
vote
1answer
83 views
How to localize my WTForms validation message?
I nearly got my validation message localized as you can see it works for English and Swedish:
English:
Swedish:
But when I switch to Portuguese I get the following error message:
Traceback ...
1
vote
1answer
96 views
Can wtforms custom validator make a field optional?
I'm using a custom validator to check a field is not empty if a check box is checked. It checks correctly but regardless it always still validating if the value is a number.
Basically I need a field ...
1
vote
0answers
62 views
How to render my TextArea with WTForms?
I'd like to render my textareafield with a specified number of columns and rows. With WTForms, how do I assign to number of columns and rows? I followed the instructions from this question but it ...
1
vote
0answers
79 views
WTForms FieldList - getting unsorted data
I use WTForms FieldList field for lists of fields. It gets the values of these input fields sorted by their names in form.data. But I want to get the values in the order they appear in the form. ...
1
vote
1answer
189 views
WTForms syntax when using Flask and Flask-MongoAlchemy
I am testing out Python framework Flask and Flask-MongoAlchemy with MongoDB (of course). As I'm building multiple documents in my test app, I like to get the forms validated us WTForms.
Can anyone ...
1
vote
1answer
67 views
wtforms ReferencePropertyField set selected
Using the GAE-helper ReferencePropertyField to show possible groups that a user can be in.
How do I make it show the what group the user currently is in when editing the user?
The selectfield works ...
1
vote
2answers
499 views
Using WTForms' populate_obj( ) method with Flask micro framework
I have a template which allows the user to edit their user information.
<html>
<body>
<form method="post">
<table>
<tr>
...
1
vote
1answer
181 views
Form labels not rendering with Django & WTForms
I'm trying to use WTForms with Django & a MongoEngine/MongoDB database backend. The forms are outputting properly, but I can't for the life of me get the labels to show up.
Here is my template ...
1
vote
1answer
308 views
Wtforms: How to generate blank value using select fields with dynamic choice values
I'm using Flask with WTForms (doc) on Google App Engine. What is the best way to generate an field with an empty value for a select field?
form.group_id.choices = [(g.key().id(), g.name) for g in ...
1
vote
1answer
259 views
WTForms validators.optional: continue validation of empty fields?
I have a problem with WTForms validators.optional() because it stops the validation chain if the field is empty (WTForms docs). This means that the validation does not continue with custom functions, ...
1
vote
1answer
211 views
WTForms won't render fields
I'm having trouble rendering my form's fields with WTForms. I'm using it with the webapp framework and Django templates in GAE.
I've made a simple project as test and it worked fine. Here's some code ...
1
vote
1answer
234 views
Tipfy wtform fields always render as input type=“text”
I cant find examples of templates that use tipfy forms (extended wtforms).
For example, If I want to implement birth date I want the "right" html for the user to enter his date of birth. Lets go with ...
1
vote
3answers
212 views
How to specify rows and columns of a <textarea > tag using wtforms
Constructing a wtforms' TextAreaField is something like this:
content = wtf.TextAreaField('Content', id="content-area", validators=[validators.Required()])
How can I specify the number of rows and ...
1
vote
1answer
447 views
Use WTForms with webapp and Django templates on Google App Engine
I'm trying to use WTForms with webapp without much luck.
I would like to be able to use the form_field templatetag, as shown in the documentation:
{% form_field form.username class="big_text" ...
1
vote
1answer
526 views
WTforms validation
Hi I have a form class which looks like below:-
class UserCreateForm(wtf.Form):
name=wtf.TextField('Name',validators=[validators.Required(),username_check])
email=wtf.TextField('Email')
...
0
votes
1answer
75 views
WTForms not working on Google App Engine 1.6.1 & Python 2.7
I'm new at GAE and all that python stuff, so question might be stupid at last.)
I have model:
from google.appengine.ext import db
class Task(db.Model):
name = db.StringProperty()
summary = ...
0
votes
3answers
73 views
Python regex for integer?
I'm learning reg ex and I would like one that only allows integers. I could make one that only allows numbers by using d but it also allows decimal numbers which I don't want:
price = ...
0
votes
1answer
242 views
How to render my select field with WTForms?
I have a select field that has certain elements faded and disabled that I would like to render with WTForms:
<select name="cg" id="cat" class="search_category">
<option value='' >{% trans ...
0
votes
1answer
82 views
How to make a field conditionally optional in WTForms?
My form validation is working nearly complete, I just have 2 cases I don't know exactly how to solve: 1) The password field should be required of course but I also provide the possibility to log in ...
0
votes
1answer
53 views
How to get red borders when a field is invalid using WTForms with GAE and Jinja2?
I've got validation practically working and part of my requirement is that when a field is not valid there should be a red border around the field that is not valid:
<tr><td ...
0
votes
1answer
47 views
WTForms decimalfield raises type error on getting u'' input
I am using WTForms with cherrypy with a decimal field but I'm getting a typeError exception when I pass a u"" string to it. It says it needs a float when it runs the _value function. It would be ...
0
votes
1answer
200 views
How to populate my WTForm variables?
I'm enabling a function that can edit an entity. I want to populate the form with the variables from the datastore. How can I do it? My code doesn't populate the form:
if self.request.get('id'):
id ...
0
votes
2answers
323 views
Form handling in Pyramid
Since Pyramid does not have any form dependencies, I some recommendations for form handling.
This covers form generation, validation, etc.
I only know wtforms, but I dont mind to use some other thing ...
0
votes
1answer
146 views
WTForms getting the errors
Currently in WTForms to access errors you have to loop through field errors like so:
for error in form.username.errors:
print error
Since i'm building a rest application which uses no form ...
0
votes
1answer
94 views
WTForms - multi-value string to SelectMultipleField
I have a WTForm called TestForm with the following property:
areas = SelectMultipleField(u'Test Areas', choices=TestArea.names())
When I create a new instance of TestForm and pass in an object with ...
0
votes
1answer
183 views
Not a valid choice: Can't select ReferenceProperty value at SelectField wtform
i try to use ReferenceProperty at form for create/edit Entry but nothing happen.
i have:
class Type(db.Model):
name = db.StringProperty()
class Entry(db.Model):
type = ...
0
votes
1answer
178 views
Something wrong with wtforms FieldList && validation
Something wrong with wtforms FieldList && validation...
It should say that field must have Int value, not This field is required
Why f.data has [None, 2, None] value, not ['def', 2, 'abc'] ?
...
0
votes
0answers
86 views
How to check form that have more than one field with the same name?
How to check form that have more than one field with the same name?
I have 3 fields with "locality_id" name. But after validation, f.locality_id attribute has first field value only :/
from ...
0
votes
0answers
160 views
How do you test forms with QuerySelectFields for with wtforms and sqlalchemy? [closed]
I'm using flask, sqlalchemy and wtforms. Everything is working fine except I am unable to test forms that have QuerySelectField fields in them.
class AccountForm(Form):
name = TextField('Name', ...
0
votes
4answers
565 views
WTForms-How to prepopulate a textarea field?
Hi I have been trying to pepopulate a textareafield using something
like this in the template.
{{form.content(value="please type content")}}
This works when the field is textfield primarily because ...
0
votes
1answer
260 views
WTForms doesn't validate - no errors
I got a strange problem with the WTForms library. For tests I created a form with a single field:
class ArticleForm(Form):
content = TextField('Content')
It receives a simple string as content ...
0
votes
1answer
108 views
how to make the username and email is Unique .. using WTFroms
wtforms is a forms validation and rendering library for python web development
but i can't find how to handle the username and email Unique ,
thanks