Great! I will test the textarea asap. Labels should allow more access,
take a look at this snippet I implemented using WTForms:
{% if field.type == "BooleanField" %} <label>{% raw
field.label.text %}</label>
{% raw field(title=_(field.description),
class_="pull-left", value="") %}
{% elif field.type == "TextAreaField" %}
{% raw field.label %}
{% raw field(title=_(field.description),
rows="2" ) %}
{% else %}
{% raw field.label %}
{% raw field(title=_(field.description)) %}
{% end %} <span id="{{
field.id}}
_help">{{ _(field.description) }}</span>
One can access a fields label properties easier as in "<label>{% raw
field.label.text %}</label>"
I wonder if this would also be necessary,
http://wtforms.simplecodes.com/docs/dev/fields.html,
take a look at the "rendering" part, the functions __cal__ and
__html__. As it is, WTForms is still a little more comfortable to use.
I would like to test a bit more to be sure though