feriennet.forms.userprofile =========================== .. py:module:: feriennet.forms.userprofile Classes ------- .. autoapisummary:: feriennet.forms.userprofile.UserProfileForm Module Contents --------------- .. py:class:: UserProfileForm(formdata: webob.multidict.MultiDict[str, Any] | None = None, obj: object | None = None, prefix: str = '', data: dict[str, Any] | None = None, meta: dict[str, Any] | None = None, *, extra_filters: collections.abc.Mapping[str, collections.abc.Sequence[Any]] | None = None, **kwargs: Any) Bases: :py:obj:`onegov.form.Form` Custom userprofile form for feriennet .. py:attribute:: request :type: onegov.feriennet.request.FeriennetRequest .. py:attribute:: extra_fields :value: ('salutation', 'organisation', 'address', 'zip_code', 'place', 'email', 'phone', 'website',... .. py:attribute:: ticket_statistics .. py:attribute:: salutation .. py:attribute:: first_name .. py:attribute:: last_name .. py:attribute:: organisation .. py:attribute:: address .. py:attribute:: zip_code .. py:attribute:: place .. py:attribute:: political_municipality .. py:attribute:: email .. py:attribute:: phone .. py:attribute:: emergency .. py:attribute:: website .. py:attribute:: bank_account .. py:attribute:: bank_beneficiary .. py:property:: name :type: str .. py:method:: on_request() -> None .. py:property:: show_political_municipality :type: bool | None .. py:method:: toggle_political_municipality() -> None .. py:property:: show_ticket_statistics :type: bool .. py:method:: toggle_ticket_statistics() -> None .. py:method:: validate_emergency(field: wtforms.fields.StringField) -> None .. py:method:: ensure_beneificary_if_bank_account() -> bool | None .. py:method:: should_skip_key(key: str) -> bool .. py:method:: populate_obj(model: onegov.user.User) -> None A reimplementation of wtforms populate_obj function with the addage of optional include/exclude filters. If neither exclude nor include is passed, the function works like it does in wtforms. Otherwise fields are considered which are included but not excluded. .. py:method:: process_obj(model: onegov.user.User) -> None Called by :meth:`process` if an object was passed. Do *not* use this function directly. To process an object, you should call ``form.process(obj=obj)`` instead.