0
votes
1answer
26 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
28 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
27 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
47 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
33 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
1answer
30 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
60 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
1answer
26 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
64 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 ...
3
votes
2answers
85 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
68 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
36 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
2answers
52 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
89 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
63 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 ...
1
vote
0answers
54 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 ...
0
votes
1answer
111 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
168 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
2answers
156 views

Python/Flask WTForms: make read only TextField

how to set read-only flag to TextField in Flask
0
votes
2answers
107 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
106 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
165 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 ...
1
vote
2answers
72 views

Alter field.data berfore validators for a DateField

My issue is very simple, here is a basic example: class F(Form): date_test = DateField('Test', validators=[Required()], format='%d/%m/%Y') I need to change the value sent by the user before the ...
1
vote
2answers
227 views

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 derived from another widget already. I am trying to make a button type, ...
1
vote
1answer
197 views

How can I disable the wtforms SelectField choices validation?

I have a wtforms form class MyForm(Form): names = SelectField('name', choices=[]) The choices of names field is built dynamically and rendered in the template by an ajax call. When I submit ...
0
votes
1answer
179 views

Flask-WTF uses input=submit instead of button type=submit

I would like Flask's "SubmitField" to use <button type="submit" title="Save this form"><span>Save</span></button> Instead of: <input type="submit" title="Save this ...
1
vote
1answer
232 views

upload file in ajax with wtforms

I use wtforms to handle forms. so i create form like this: class ProfileForm(Form): firstName = TextField(_('firstName'), [validators.Required(), validators.Length(min=3, max=45)]) lastName = ...
3
votes
1answer
75 views

What's the right way to optionally require a field using Flask-WTForms?

I'm using Flask with Flask-WTForms and am writing an admin page where it's possible to update values for a user - including the password. I'm using the same form page that I use for registration, but ...
2
votes
0answers
172 views

csrf failed errors for Flask-wtf based login form

{csrf_token': [u'CSRF failed']} error shows up in chrome browser running on windows 8. Firefox does not give this error. This is a flask app and the login form is made using wtforms. <form ...
0
votes
3answers
316 views

flask-wtf selectField choices not valid

I made a SelectField like this: # constants.py QUESTION_LIST = {} QUESTION_LIST['QuestionOne'] = { 'disagree-strong': "Strongly Disagree", 'agree-strong': "Strongly Agree" } #forms.py from constants ...
3
votes
1answer
95 views

Apply safe filter to concatenated html string

I have been trying to do this: {% set error_message = '<span class="help-inline">' + field.errors[0]|e + '</span>' %} {# ... code ... #} {{ error_message|safe }} Trying to get this ...
5
votes
1answer
332 views

defining a mongoengine model with ListField that cannot be empty

I am using flask-mongoengine and my model Post has fields title, slug, body and tags. Each Post has a unique slug and each Post needs to have at least 1 tag. So tags is a list of strings with at least ...
1
vote
1answer
630 views

Not a Valid Choice for Dynamic Select Field WTFORMS

I currently am creating a dynamic select field using WTFORMS, however it never submits and fails the validation with the following error. Not a valid choice My Field is created like this: area = ...
0
votes
2answers
204 views

Choices validation in WTForms does not update when database does

I understand the SelectField method in WTForms takes can argument choices which has the form... choices=[("value1", "display of value 1"), ("value2", "display of value 2")] I need to populate my ...
2
votes
1answer
333 views

Flashing Flask-WTFform errors

I'm trying to flash WTForm validation errors. I found this snippet and slightly modified it: def flash_errors(form): """Flashes form errors""" for field, errors in form.errors.items(): ...
1
vote
1answer
309 views

Flask App Using WTForms with SelectMultipleField

I have a Flask application that uses WTForms for user input. It uses a SelectMultipleField in a form. I can't seem to get the app to POST all items in the field when selected; it only sends the ...
2
votes
1answer
162 views

Wtforms escaping value argument containing backbone js template while rendering field

I am using Flask, WTForms and Backbone.js to create my app. I am working with Backbonejs for first time. I have created a Backbone js template to display data and its corresponding form. <%= ...
1
vote
1answer
169 views

Python Flask make a WTForm available to all templates

I have a login form that should appear in all templates, so It's not convenient to pass it as parameter in every render_template(). I tried to put it in a environment globals like this: app = ...
4
votes
1answer
484 views

Flask + WTForms + SelectMultipleField and Dynamic Choices

I am trying to use WTForms.SelectMultipleField to manage some dynamic choices on a form but I'm running into some difficulty with it being modified client-side before being submitted for validation. ...
2
votes
1answer
358 views

WTForms FieldList with optional fields

I have the following form, class AddForm(wtf.Form): tags = TagListField("Tags (comma separated)", validators=[wtf.Required()]) question = wtf.TextField("Question", ...
3
votes
2answers
1k views

How do I generate dynamic fields in WTForms

I am trying to generate a form in WTForms that has dynamic fields according to this documentation http://wtforms.simplecodes.com/docs/1.0.2/specific_problems.html#dynamic-form-composition I have this ...
4
votes
2answers
298 views

Flask-WTF: how pass structered object to form

i'm new to python and flask framework. My problem is I have to make an edit page. So i need to pass all object's exist infos into a form. Detail: My object have this kind of structure: class ...
0
votes
1answer
385 views

WTforms form not submitting but outputs no validation errors

I'm trying to get file uploads with flask-uploads working and running in to some snags. I'll show you my flask view function, the html and hopefully someone can point out what I'm missing. Basically ...
0
votes
1answer
55 views

Edit a small SQL rowset using forms in Django

I'm interested in displaying 1-5 model instances using forms on a page using a grid similar to something one would find in a desktop database application. I understand I would need to use multiple ...
3
votes
2answers
302 views

Move options between two multi-select fields

I'm trying to do something like this answer: http://stackoverflow.com/a/6256910/1641189 However I want to do it with multi-select fields since they provide scroll bars. Instead of having each item ...
5
votes
1answer
649 views

Flask and WTForms - how to get wtforms to refresh select data

I am using the latest version of flask, wtforms and Flask-WTForms. I have a page that displays a form and one is a select box with option option called "A". When the app starts all is well. In a ...
1
vote
2answers
810 views

How do you set a default value for a WTForms SelectField?

When attempting to set the default value of a SelectField with WTForms, I pass in value to the 'default' parameter like so. class TestForm(Form): test_field = SelectField("Test: ", choices=[(1, ...
4
votes
0answers
476 views

Using FieldList and FormField with wtforms

We have the following forms and we are trying to create list of GroupRoleForms for each group. class FullNameMixIn(): full_name = TextField( 'Full name', [ ...
1
vote
1answer
489 views

rendering html title attributes with Flask-WTForms field description

I am using the render_field macro presented on the Flask-WFT documentation page to render fields in long forms across different templates. A field is defined like this year_built = ...
4
votes
1answer
517 views

Howto: Dynamically generate CSRF-Token in WTForms with Flask

I have a fruits form that has one FieldList object for the bananas: bananas = FieldList(FormField(BananaForm)) In the frontend, initially, I add one of those fields to the FieldList ...

1 2