wtforms-appengine
wtforms-appengine copied to clipboard
WTForms integration for Google App Engine
I have a wtf_appengine form defined with: ```python PostForm = ndb.model_form(Post, base_class=flask_wtf.FlaskForm, exclude=vars(AuditMixin), field_args={ 'summary': {'widget': widgets.TextArea(), 'render_kw': {'class': 'form-control'}, 'validators': [validators.Length(max=1500)]}, 'essay': {'widget': widgets.TextArea(), 'render_kw': {'class': 'form-control'}} }) ```...
If my NDB model has a Property like `ndb.StringProperty(verbose_name='type', required=True, choices=['Essay', 'Podcast', 'Video'])`, and I then I expect the resulting form `select` to have options in the same order. However,...
When are you making the next pypi release? I'm looking forward to the `query=` option for `KeyPropertyField` for use in a current project.
When assigning more than one value to a repeated StringProperty - only the first one gets stored, i.e.: ``` from wtforms_appengine.ndb import model_form from google.appengine.ext import ndb from webob.multidict import...
Love the library, thanks for taking the time to build it! I'm trying to figure out whether/how I could override default field types to enable HTML5 fields. For example, Email...
I read table in of supported properties and not found support for BlobProperty. class ModelConverter(ModelConverterBase) ndb.py