WTForms is a forms validation and rendering library for python web development.
0
votes
1answer
45 views
Flask-WTForms dynamic fields with unique field id
I'm attempting to dynamically create some form fields. I can output the fields populated with the correct default values ie. 1 or 0 for shared/private, this works ok. The problem I have is submitting ...
0
votes
1answer
38 views
Proper way to create a RadioField with a dynamic default value?
Here's the code I've got, and this works. MyForm is a form class, which defines only a RadioField. The RadioFieldhas no default specified here, because we don't know what items it will contain yet. ...
0
votes
1answer
26 views
Create a custom field in wtForms
In my form I am trying to create a custom array field with choices.
The custom form field:
class CustomField(Field):
widget = TextInput()
def _value(self):
if self.data:
...
1
vote
1answer
29 views
Flask-WTForms testing (with py.test)
I am building an application using flask and flask-wtforms, and i was writing a test for my login form.
I am doing it like this:
with app.test_client() as c:
c.post('/login', ...
0
votes
0answers
50 views
WTForms RadioField default values
I'm generating a html form with wtforms like this:
<div class="control-group">
{% for subfield in form.time_offset %}
<label class="radio">
{{ subfield }}
{{ ...
1
vote
1answer
70 views
Populate a WTForms form object with a datetime.date
I'm cooking up a crud interface for an object representing a bill, as in the water bill, the electric bill, etc.
I'm using sqlalchemy to handle the data, wtforms to handle the forms, and flask to ...
0
votes
1answer
33 views
Validating an unknown set of items with WTForms
I have a form that looks something like this:
<form method="post">
<input id="1" name="people" type="checkbox" value="1"/>
<label for="1">Paul</label>
<input ...
1
vote
1answer
60 views
Rendering a WTForms CheckboxInput in Jinja Template
I can't seem to figure out how to render a WTForms CheckboxInput in my template. When I try to render the field using Flask in my Jinja template I get this error:
TypeError: call() takes exactly 2 ...
1
vote
1answer
58 views
How to keep track of Form field changes in Flask-WTF?
I have model with members field as shown below:
class Team(db.Model):
--- some fields ---
members = ListProperty(db.Key) # Using App Engine datastore as backend.
I am using Flask-WTFforms ...
2
votes
2answers
90 views
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>
<form action="" method=POST>
{{ form.name(disabled=True) }}
{{ form.title ...
0
votes
1answer
52 views
Tornado and WTForms
I am using WTForms for the first time.
Using WTForms to validate POST requests in Tornado
Below is my forms
forms.py
class UserForm(Form):
user = TextField('user', [validators.Length(min=23, ...
0
votes
1answer
43 views
Checking uniqueness contraint during form validation in App Engine
I am using Flask and WTforms in App Engine, trying to implement uniqueness contraint on one of the field. The question is big, please be patient and I have been stuck here from many hours, need some ...
0
votes
2answers
57 views
Is there a simple way to suppress WTForms form field default values?
Whenever I use a WTForms form to display data from a database:
sql = "SELECT * FROM rolodex WHERE rolodex_id = " + rolodex_id
cursor = mdb_connect("DictCursor")
cursor.execute(sql)
row = ...
0
votes
1answer
41 views
Python Flask WTForms: How can I disable a field dynamically in a view?
I've been able to implement this change to create Field which is disabled in WTForms. How would I selectively disable a field in my view before rendering it?
0
votes
2answers
115 views
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 import TemplateNotFound
from models import Member
from ...
1
vote
2answers
53 views
Why won't a simple dictionary populate obj properly for form = myForm(obj=dict)?
I'm having trouble populating a form using a dictionary:
row = {'firstname':'Bob', 'lastname': "Smith",
'email': 'bob@bubba.com', 'phone': '512.999.1212'}
form = ...
0
votes
1answer
36 views
Field with ListProperty(db.Key) is skipping in form created using wtforms.ext.appengine.db import model_form?
I am using model_form to create form automatically from the App Engine model. It works fine, but the created form doesn't include ListProperty() field.
Code snippet:
In models.py:
class ...
1
vote
1answer
31 views
WTForms Form has changed
In my view code,
I build the form using the following line:
MyForm(obj=my_obj)
The post method would rebuild the form using:
UserAccountForm(request.form)
How would you check if some form ...
2
votes
1answer
121 views
Pylint - Pylint unable to import flask.ext.wtf?
I've got my Pylint install importing flask just fine. And with that same installation of flask, I have wtforms running just fine in my application. However, when I run Pylint on a file importing ...
0
votes
1answer
62 views
WTForms Validation Error on ListField
I'm getting the following error
ValidationError: ValidationError(Value must be one of ['AL','CT', 'DE', 'FL'... 'WY']: ['state'])
but what I can't seem to figure out why it's validating that field ...
3
votes
2answers
147 views
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 works just fine without the selectfield but with it I get the following error:
Error:
...
0
votes
1answer
98 views
Passing in Session data from Flask to WTForms
So I'm having issues with passing in a list from my Flask session object into the WTForms that I'm using.
I'm trying to access the 'strategy' object (it's a list) within the session object.
The goal ...
0
votes
1answer
40 views
How can I use a Form subclass as a data attribute of another Form subclass?
I want to do something like this, but don't know if it is possible in any way:
from flask.ext.wtf import Form, TextField
class Foo(Form):
a = TextField('name')
class Bar(Form):
...
0
votes
1answer
89 views
How do I use wtforms RadioField input to add an option with open-ended text input option?
How can I use wtforms / flask_wtf to render an HTML form:
with a select field that gives the responder fixed choices, plus
an "Other" option that allows them to enter text.
I'm using the ...
0
votes
0answers
83 views
Google Datastore NotSavedError() on WTForms form.populate_obj() with Child Collection
Summary
wtform.populate_obj(model) raises NotSavedError() on GAE Datastore db.Model's one-to-many child collections because the model isn't saved yet.
Background
I am a newbie at Python ...
0
votes
1answer
56 views
How to use WTForms' TableWidget?
I want to use WTForms to render a form in a table. It seems like the TableWidget will do the trick, but the only way I can get this to work is as follows:
from wtforms import Form, TextField, widgets
...
0
votes
2answers
64 views
flask - saving extra field after using populate_obj
Hi I have a small Flask app which uses the populate.obj methos for saving form data to an object.
models.py:
class User(db.DynamicDocument):
username = db.StringField(unique=True)
email = ...
0
votes
1answer
109 views
flask : how to retrieve session data?
I'm pretty new python web-dev, I have flask+wtforms application. I can see in login()
user object stored as
if user:
if user.verify_password(form.password.data):
flash('You have been ...
0
votes
1answer
86 views
Flask + WTForms: updating a row
I try to update an existing row in the database. When I submit the form I'm directed to /item/edit/ which triggers a 404. I have similar code in a different project and that works correctly. I can't ...
0
votes
1answer
77 views
How do I load an entity from the App Engine datastore into my WTForms model_form?
I'm using the App Engine extension of WTForms to generate forms from my datastore models. This works great for adding new entities, but I would also like to be able to use the forms to edit existing ...
1
vote
0answers
71 views
Flask-WTF TextArea output has undesired \r\n in it
This has me rather baffled. I'm using Flask, WTForms, and the Flask-WTF extension. Using validate_on_submit, I'm seeing \r\n inserted (seemingly randomly) into user-submitted input. After talking with ...
3
votes
1answer
72 views
WTForms decimal separator (for non-English apps)
For non-English apps it's very common to use a , as decimal separator.
I can't find any reference to changing the decimal formatting based on the locale.
Is this possible with WTForms?
1
vote
1answer
104 views
Jinja2 and WTForms nesting
I'm using the following code at the moment to generate a label:
{{ form.code.label(class="control-label required") }}
Note the required class.
This is now hardcoded but I want to add that ...
1
vote
1answer
37 views
Sorting WTForms form.errors dict
The forms.errors dict seems to be sorted on field name, and not on the
order they are declared in the form itself.
E.g.
class ProductForm(Form):
code = TextField('Code', ...
1
vote
1answer
28 views
Retrieving plain field label
Is it possible to retrieve the plain field label.
When I use something like {{ form.field.label }} then it includes the html label
element.
I just want to use the pain label in some places.
0
votes
1answer
105 views
WTForms How to use a DecimalField which generates proper field errors on bad input
Have a look at this example
class MyForm(ForM):
...snip...
quantity = DecimalField(u'Quantity', [NumberRange(1, 8)])
...snip...
This works nicely if the user is co-operative and enters ...
0
votes
1answer
121 views
How to get WTF form object data without a POST request?
I have a template which allows user to enter search parameter (search.html)
{% from "_formhelpers.html" import render_field %}
<form method=”post”>
<dl>
{{ render_field(form. ...
0
votes
1answer
115 views
AppEngine NDB property validations
I wonder what the best approach is for validating NDB entity properties likes:
a date must be in the future
a grade (integer property) must be between 1 and 10
a reference to another entity must ...
0
votes
0answers
47 views
How do I apply a class to the HTML representation of a field generated by WTForms GAE model_form()?
I have a form instance created from a class generated by WTForms' GAE model_form() function. I would like to selectively add a class to some of the form fields' HTML representations. I'm having ...
0
votes
1answer
210 views
WTForms dynamic forms with configurable validation
I'm building a system which allows admin users to add "questions" to the database. Each type of question has a WTForms object associated with it. To display a page, I loop over all questions and ...
0
votes
1answer
55 views
wtforms how is data supplied from user request to form?
here is basic flask get/post application:
@app.route('/foo', methods = ['GET', 'POST'])
def fooapp():
form = SomeForm()
if form.validate_on_submit():
/* do something with posted data */
...
0
votes
0answers
61 views
from wtforms.ext.appengine.db import model_form --> Always return import error
I'm trying to import the following Module to import WTforms on my GAE app (over python):
from wtforms.ext.appengine.db import model_form
but always return the following error:
Exception Type: ...
0
votes
0answers
54 views
WTforms: how to use them on GAE after migration from Python 2.5 to Python 2.7
I've just updated an app that I have uploaded on GAE, from Python 2.5 to Python 2.7.
After several modifications:
app.yaml
main.py (now main.app)
from cgi to wsgi
I've just realized that ...
0
votes
2answers
189 views
1
vote
3answers
95 views
Populate GAE Datastore Key Value in WTForms
I'm using WTForms and GAE (python) Datastore. I'm trying to pass the key value to the form for CRUD purposes, but it's sending the object, not the key as a string. Here's the html output line:
...
0
votes
2answers
118 views
flask and wtf - how can I direct tag attributes for fields?
After fiddling with wtforms, fields use widgets to actually render them to html. I wrote some custom field/widget to draw html in a way that I'd more like to. But here's a question:
suppose I want to ...
0
votes
3answers
123 views
How to render DateField with 3 selects
I'm looking for the simplest and cleanest way to render a basic DateField with 3 select.
<select>day</select><select>month</select><select>year</select>
(and if ...
2
votes
1answer
194 views
Why is this flask-admin form alway failing validation?
The status field shows the 3 options, but always displays "Not a valid choice" on submisison, whichever is chosen.
from website import app, db
from flask.ext import admin
from flask.ext.admin.contrib ...
0
votes
1answer
70 views
Testing for presence of form instance in Jinja2
I'm using WTforms with Jinja2 and want to change my templates page title depending on whether I am creating a new instance of editing an existing form object.
This is what I wrote in the template:
...
1
vote
1answer
198 views
flask-wtf field rendered examples
I'm comparing wtforms fields (http://wtforms.simplecodes.com/docs/0.6/fields.html) to <input> tags (http://www.w3schools.com/tags/att_input_type.asp). for some fields in wtforms, the <input ...


