form.fields =========== .. py:module:: form.fields Attributes ---------- .. autoapisummary:: form.fields.FIELDS_NO_RENDERED_PLACEHOLDER Classes ------- .. autoapisummary:: form.fields.FileDict form.fields.URLField form.fields.TimeField form.fields.DurationField form.fields.TranslatedSelectField form.fields.MultiCheckboxField form.fields.OrderedMultiCheckboxField form.fields.UploadField form.fields.UploadFileWithORMSupport form.fields.UploadMultipleField form.fields._DummyFile form.fields.UploadMultipleFilesWithORMSupport form.fields.TextAreaFieldWithTextModules form.fields.VideoURLField form.fields.HtmlField form.fields.CssField form.fields.MarkupField form.fields.TagsField form.fields.IconField form.fields.PhoneNumberField form.fields.ChosenSelectField form.fields.ChosenSelectMultipleField form.fields.ChosenSelectMultipleEmailField form.fields.PreviewField form.fields.PanelField form.fields.URLPanelField form.fields.DateTimeLocalField form.fields.TimezoneDateTimeField form.fields.HoneyPotField form.fields.ColorField form.fields.TypeAheadField Module Contents --------------- .. py:class:: FileDict Bases: :py:obj:`TypedDict` dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) .. py:attribute:: data :type: str .. py:attribute:: filename :type: str | None .. py:attribute:: mimetype :type: str .. py:attribute:: size :type: int .. py:data:: FIELDS_NO_RENDERED_PLACEHOLDER :value: ('MultiCheckboxField', 'RadioField', 'OrderedMultiCheckboxField', 'UploadField',... .. py:class:: URLField(label: str | None = None, validators: onegov.form.types.Validators[onegov.form.types.FormT, Self] | None = None, filters: collections.abc.Sequence[onegov.form.types.Filter] = (), description: str = '', id: str | None = None, default: str | None = None, widget: onegov.form.types.Widget[Self] | None = None, render_kw: dict[str, Any] | None = None, name: str | None = None, default_scheme: str | None = 'https', _form: wtforms.form.BaseForm | None = None, _prefix: str = '', _translations: wtforms.meta._SupportsGettextAndNgettext | None = None, _meta: wtforms.meta.DefaultMeta | None = None, *, fieldset: str | None = None, depends_on: collections.abc.Sequence[Any] | None = None, pricing: onegov.form.types.PricingRules | None = None) Bases: :py:obj:`wtforms.fields.StringField` A non-native version of the URL field that uses a default text field. It instead relies on `wtforms.validators.URL` and normalizes URLs with missing scheme to use `https://` or a given scheme by default. This behavior can be turned off by setting `default_scheme` to `None`. .. py:attribute:: default_scheme :value: 'https' .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: TimeField(label=None, validators=None, format='%H:%M', **kwargs) Bases: :py:obj:`wtforms.fields.TimeField` Fixes the case for MS Edge Browser that returns the 'valuelist' as [08:00:000] instead of [08:00:00]. This is only the case of the time is set with the js popup, not when switching the time e.g. with the arrow keys on the form. .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: DurationField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.Field` Field base class .. py:attribute:: widget .. py:attribute:: data :type: datetime.timedelta | None .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: TranslatedSelectField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`wtforms.fields.SelectField` A select field which translates the option labels. .. py:method:: iter_choices() -> collections.abc.Iterator[tuple[Any, str, bool, dict[str, Any]]] Provides data for choice widget rendering. Must return a sequence or iterable of (value, label, selected, render_kw) tuples. .. py:class:: MultiCheckboxField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`wtforms.fields.SelectMultipleField` No different from a normal select field, except this one can take (and validate) multiple choices. You'll need to specify the HTML `size` attribute to the select field when rendering. .. py:attribute:: widget .. py:attribute:: option_widget Base class for fields which can be iterated to produce options. This isn't a field, but an abstract base class for fields which want to provide this functionality. .. py:attribute:: contains_labels :value: True .. py:class:: OrderedMultiCheckboxField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`MultiCheckboxField` No different from a normal select field, except this one can take (and validate) multiple choices. You'll need to specify the HTML `size` attribute to the select field when rendering. .. py:attribute:: widget .. py:class:: UploadField(label: str | None = None, validators: onegov.form.types.Validators[onegov.form.types.FormT, Self] | None = None, filters: collections.abc.Sequence[onegov.form.types.Filter] = (), description: str = '', id: str | None = None, default: collections.abc.Sequence[onegov.core.types.FileDict] = (), widget: onegov.form.types.Widget[Self] | None = None, render_kw: dict[str, Any] | None = None, name: str | None = None, _form: wtforms.form.BaseForm | None = None, _prefix: str = '', _translations: wtforms.meta._SupportsGettextAndNgettext | None = None, _meta: wtforms.meta.DefaultMeta | None = None, *, fieldset: str | None = None, depends_on: collections.abc.Sequence[Any] | None = None, pricing: onegov.form.types.PricingRules | None = None) Bases: :py:obj:`wtforms.fields.FileField` A custom file field that turns the uploaded file into a compressed base64 string together with the filename, size and mimetype. .. py:attribute:: widget .. py:attribute:: action :type: Literal['keep', 'replace', 'delete'] .. py:attribute:: file :type: IO[bytes] | None .. py:attribute:: filename :type: str | None .. py:property:: data :type: onegov.core.types.FileDict | FileDict | None .. py:property:: is_image :type: bool .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:method:: process_fieldstorage(fs: onegov.form.types.RawFormValue) -> onegov.core.types.FileDict | FileDict .. py:class:: UploadFileWithORMSupport(*args: Any, **kwargs: Any) Bases: :py:obj:`UploadField` Extends the upload field with onegov.file support. .. py:attribute:: file_class :type: type[onegov.file.File] .. py:method:: create() -> onegov.file.File | None .. py:method:: populate_obj(obj: object, name: str) -> None Populates `obj.` with the field's data. :note: This is a destructive operation. If `obj.` already exists, it will be overridden. Use with caution. .. py:method:: process_data(value: onegov.file.File | None) -> None Process the Python data applied to this field and store the result. This will be called during form construction by the form's `kwargs` or `obj` argument. :param value: The python object containing the value to process. .. py:class:: UploadMultipleField(label: str | None = None, validators: onegov.form.types.Validators[onegov.form.types.FormT, UploadField] | None = None, filters: collections.abc.Sequence[onegov.form.types.Filter] = (), description: str = '', id: str | None = None, default: collections.abc.Sequence[FileDict] = (), widget: onegov.form.types.Widget[Self] | None = None, render_kw: dict[str, Any] | None = None, name: str | None = None, upload_widget: onegov.form.types.Widget[UploadField] | None = None, _form: wtforms.form.BaseForm | None = None, _prefix: str = '', _translations: wtforms.meta._SupportsGettextAndNgettext | None = None, _meta: wtforms.meta.DefaultMeta | None = None, *, fieldset: str | None = None, depends_on: collections.abc.Sequence[Any] | None = None, pricing: onegov.form.types.PricingRules | None = None, **extra_arguments: Any) Bases: :py:obj:`UploadMultipleBase`, :py:obj:`wtforms.fields.FileField` A custom file field that turns the uploaded files into a list of compressed base64 strings together with the filename, size and mimetype. This acts both like a single file field with multiple and like a list of :class:`onegov.form.fields.UploadFile` for uploaded files. This way we get the best of both worlds. .. py:attribute:: widget .. py:attribute:: raw_data :type: list[onegov.form.types.RawFormValue] .. py:attribute:: _separator :type: str .. py:attribute:: upload_field_class :type: type[UploadField] .. py:attribute:: upload_widget :type: onegov.form.types.Widget[UploadField] .. py:method:: __bool__() -> Literal[True] .. py:method:: process(formdata: wtforms.meta._MultiDictLikeWithGetlist | None, data: object = unset_value, extra_filters: collections.abc.Sequence[onegov.form.types.Filter] | None = None) -> None Process incoming data, calling process_data, process_formdata as needed, and run filters. If `data` is not provided, process_data will be called on the field's default. Field subclasses usually won't override this, instead overriding the process_formdata and process_data methods. Only override this for special advanced processing, such as when a field encapsulates many inputs. :param extra_filters: A sequence of extra filters to run. .. py:method:: append_entry_from_field_storage(fs: webob.request._FieldStorageWithFile) -> UploadField .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: _DummyFile .. py:attribute:: file :type: onegov.file.File | None .. py:class:: UploadMultipleFilesWithORMSupport(*args: Any, **kwargs: Any) Bases: :py:obj:`UploadMultipleField` Extends the upload multiple field with onegov.file support. .. py:attribute:: file_class :type: type[onegov.file.File] .. py:attribute:: added_files :type: list[onegov.file.File] .. py:attribute:: upload_field_class .. py:method:: populate_obj(obj: object, name: str) -> None Populates `obj.` with the field's data. :note: This is a destructive operation. If `obj.` already exists, it will be overridden. Use with caution. .. py:class:: TextAreaFieldWithTextModules(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.TextAreaField` A textfield with text module selection/insertion. .. py:attribute:: widget .. py:class:: VideoURLField(label: str | None = None, validators: onegov.form.types.Validators[onegov.form.types.FormT, Self] | None = None, filters: collections.abc.Sequence[onegov.form.types.Filter] = (), description: str = '', id: str | None = None, default: str | None = None, widget: onegov.form.types.Widget[Self] | None = None, render_kw: dict[str, Any] | None = None, name: str | None = None, default_scheme: str | None = 'https', _form: wtforms.form.BaseForm | None = None, _prefix: str = '', _translations: wtforms.meta._SupportsGettextAndNgettext | None = None, _meta: wtforms.meta.DefaultMeta | None = None, *, fieldset: str | None = None, depends_on: collections.abc.Sequence[Any] | None = None, pricing: onegov.form.types.PricingRules | None = None) Bases: :py:obj:`URLField` A non-native version of the URL field that uses a default text field. It instead relies on `wtforms.validators.URL` and normalizes URLs with missing scheme to use `https://` or a given scheme by default. This behavior can be turned off by setting `default_scheme` to `None`. .. py:class:: HtmlField(*args: Any, **kwargs: Any) Bases: :py:obj:`wtforms.fields.TextAreaField` A textfield with html with integrated sanitation. .. py:attribute:: data :type: markupsafe.Markup | None .. py:attribute:: form .. py:method:: pre_validate(form: wtforms.form.BaseForm) -> None Override if you need field-level validation. Runs before any other validators. :param form: The form the field belongs to. .. py:class:: CssField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.TextAreaField` A textfield with css validation. .. py:method:: post_validate(form: wtforms.form.BaseForm, validation_stopped: bool) -> None Override if you need to run any field-level validation tasks after normal validation. This shouldn't be needed in most cases. :param form: The form the field belongs to. :param validation_stopped: `True` if any validator raised StopValidation. .. py:class:: MarkupField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.TextAreaField` A textfield with markup with no sanitation. This field is inherently unsafe and should be avoided, use with care! .. py:attribute:: data :type: markupsafe.Markup | None .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:method:: process_data(value: str | None) -> None Process the Python data applied to this field and store the result. This will be called during form construction by the form's `kwargs` or `obj` argument. :param value: The python object containing the value to process. .. py:class:: TagsField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.StringField` A tags field for use in conjunction with this library: https://github.com/developit/tags-input .. py:attribute:: widget .. py:attribute:: data :type: str | list[str] .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:method:: process_data(value: list[str] | None) -> None Process the Python data applied to this field and store the result. This will be called during form construction by the form's `kwargs` or `obj` argument. :param value: The python object containing the value to process. .. py:class:: IconField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.StringField` Selects an icon out of a number of icons. .. py:attribute:: widget .. py:class:: PhoneNumberField(*args: Any, country: str = 'CH', **kwargs: Any) Bases: :py:obj:`wtforms.fields.TelField` A string field with support for phone numbers. .. py:attribute:: country :value: 'CH' .. py:property:: formatted_data :type: str | None .. py:class:: ChosenSelectField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`wtforms.fields.SelectField` A select field with chosen.js support. .. py:attribute:: widget .. py:class:: ChosenSelectMultipleField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`wtforms.fields.SelectMultipleField` A multiple select field with chosen.js support. .. py:attribute:: widget .. py:class:: ChosenSelectMultipleEmailField(label=None, validators=None, coerce=str, choices=None, validate_choice=True, **kwargs) Bases: :py:obj:`wtforms.fields.SelectMultipleField` No different from a normal select field, except this one can take (and validate) multiple choices. You'll need to specify the HTML `size` attribute to the select field when rendering. .. py:attribute:: widget .. py:method:: pre_validate(form: wtforms.form.BaseForm) -> None Override if you need field-level validation. Runs before any other validators. :param form: The form the field belongs to. .. py:class:: PreviewField(*args: Any, fields: collections.abc.Sequence[str] = (), url: collections.abc.Callable[[wtforms.meta.DefaultMeta], str | None] | str | None = None, events: collections.abc.Sequence[str] = (), display: str = 'inline', **kwargs: Any) Bases: :py:obj:`wtforms.fields.Field` Field base class .. py:attribute:: fields :type: collections.abc.Sequence[str] .. py:attribute:: events :type: collections.abc.Sequence[str] .. py:attribute:: url :type: collections.abc.Callable[[wtforms.meta.DefaultMeta], str | None] | str | None .. py:attribute:: display :type: str .. py:attribute:: widget .. py:method:: populate_obj(obj: object, name: str) -> None Populates `obj.` with the field's data. :note: This is a destructive operation. If `obj.` already exists, it will be overridden. Use with caution. .. py:class:: PanelField(*args: Any, text: str, kind: str, hide_label: bool = True, **kwargs: Any) Bases: :py:obj:`wtforms.fields.Field` Shows a panel as part of the form (no input, no label). .. py:attribute:: widget .. py:attribute:: text .. py:attribute:: kind .. py:attribute:: hide_label :value: True .. py:method:: populate_obj(obj: object, name: str) -> None Populates `obj.` with the field's data. :note: This is a destructive operation. If `obj.` already exists, it will be overridden. Use with caution. .. py:class:: URLPanelField(*args: Any, text: str, kind: str, hide_label: bool = True, **kwargs: Any) Bases: :py:obj:`PanelField` Shows a panel as part of the form (no input, no label). .. py:attribute:: widget .. py:class:: DateTimeLocalField(label: str | None = None, validators: onegov.form.types.Validators[onegov.form.types.FormT, Self] | None = None, format: str = '%Y-%m-%dT%H:%M', **kwargs: Any) Bases: :py:obj:`wtforms.fields.DateTimeLocalField` A custom implementation of the DateTimeLocalField to fix issues with the format and the datetimepicker plugin. .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: TimezoneDateTimeField(*args: Any, timezone: str, **kwargs: Any) Bases: :py:obj:`DateTimeLocalField` A datetime field data returns the date with the given timezone and expects dateime values with a timezone. Used together with :class:`onegov.core.orm.types.UTCDateTime`. .. py:attribute:: data :type: datetime.datetime | None .. py:attribute:: timezone .. py:method:: process_data(value: datetime.datetime | None) -> None Process the Python data applied to this field and store the result. This will be called during form construction by the form's `kwargs` or `obj` argument. :param value: The python object containing the value to process. .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: HoneyPotField(*args: Any, **kwargs: Any) Bases: :py:obj:`wtforms.fields.StringField` A field to identify bots. A honey pot field is hidden using CSS and therefore not visible for users but bots (probably). We therefore expect this field to be empty at any time and throw an error if provided as well as adding a log message to optionally ban the IP. To add honey pot fields to your (public) forms, give it a reasonable name, but not one that might be autofilled by browsers, e.g.: delay = HoneyPotField() .. py:attribute:: widget .. py:attribute:: type :value: 'LazyWolvesField' .. py:method:: post_validate(form: onegov.form.Form, validation_stopped: bool) -> None Override if you need to run any field-level validation tasks after normal validation. This shouldn't be needed in most cases. :param form: The form the field belongs to. :param validation_stopped: `True` if any validator raised StopValidation. .. py:class:: ColorField(label=None, validators=None, filters=(), description='', id=None, default=None, widget=None, render_kw=None, name=None, _form=None, _prefix='', _translations=None, _meta=None) Bases: :py:obj:`wtforms.fields.StringField` A string field that renders a html5 color picker and coerces to a normalized six digit hex string. It will result in a process_error for invalid colors. .. py:attribute:: widget .. py:method:: coerce(value: object) -> str | None .. py:method:: process_data(value: object) -> None Process the Python data applied to this field and store the result. This will be called during form construction by the form's `kwargs` or `obj` argument. :param value: The python object containing the value to process. .. py:method:: process_formdata(valuelist: list[onegov.form.types.RawFormValue]) -> None Process data received over the wire from a form. This will be called during form construction with data supplied through the `formdata` argument. :param valuelist: A list of strings to process. .. py:class:: TypeAheadField(*args: Any, url: collections.abc.Callable[[wtforms.meta.DefaultMeta], str | None] | str | None = None, **kwargs: Any) Bases: :py:obj:`wtforms.fields.StringField` A string field with typeahead. Requires an url with the placeholder `%QUERY` for the search term. .. py:attribute:: url :type: collections.abc.Callable[[wtforms.meta.DefaultMeta], str | None] | str | None .. py:attribute:: widget