org.forms.userprofile ===================== .. py:module:: org.forms.userprofile Classes ------- .. autoapisummary:: org.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` Defines the settings form for user profiles. .. py:attribute:: request :type: onegov.org.request.OrgRequest .. py:attribute:: ticket_statistics .. py:property:: enable_ticket_statistics :type: bool .. py:method:: on_request() -> None .. py:method:: populate_obj(obj: 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(obj: 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.