aboutsummaryrefslogtreecommitdiff
path: root/docs/_build/html/_sources/autoapi/app/forms
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-07 13:59:08 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-07 13:59:08 +0530
commit3a708b304319afe84ebf3d40ecebabe6acc339f3 (patch)
treeb72f391dbe4d5370394c546f94e10d6edaa17a63 /docs/_build/html/_sources/autoapi/app/forms
parent359813517e3382c527125fe673fa89f0fd0742c0 (diff)
started work on automatic documentation
Diffstat (limited to 'docs/_build/html/_sources/autoapi/app/forms')
-rw-r--r--docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt107
-rw-r--r--docs/_build/html/_sources/autoapi/app/forms/index.rst.txt15
2 files changed, 122 insertions, 0 deletions
diff --git a/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt b/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt
new file mode 100644
index 0000000..5afa9c2
--- /dev/null
+++ b/docs/_build/html/_sources/autoapi/app/forms/app_forms/index.rst.txt
@@ -0,0 +1,107 @@
+:mod:`app.forms.app_forms`
+==========================
+
+.. py:module:: app.forms.app_forms
+
+
+Module Contents
+---------------
+
+Classes
+~~~~~~~
+
+.. autoapisummary::
+
+ app.forms.app_forms.MyForm
+ app.forms.app_forms.UserSignUp
+ app.forms.app_forms.UserLogIn
+
+
+
+
+.. class:: MyForm(formdata=_Auto, **kwargs)
+
+
+ Bases: :py:obj:`flask_wtf.FlaskForm`
+
+ Flask-specific subclass of WTForms :class:`~wtforms.form.Form`.
+
+ If ``formdata`` is not specified, this will use :attr:`flask.request.form`
+ and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to
+ prevent this.
+
+ .. attribute:: name
+
+
+
+
+ .. attribute:: email
+
+
+
+
+ .. attribute:: subject
+
+
+
+
+ .. attribute:: body
+
+
+
+
+
+.. class:: UserSignUp(formdata=_Auto, **kwargs)
+
+
+ Bases: :py:obj:`flask_wtf.FlaskForm`
+
+ Flask-specific subclass of WTForms :class:`~wtforms.form.Form`.
+
+ If ``formdata`` is not specified, this will use :attr:`flask.request.form`
+ and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to
+ prevent this.
+
+ .. attribute:: first_name
+
+
+
+
+ .. attribute:: last_name
+
+
+
+
+ .. attribute:: email
+
+
+
+
+ .. attribute:: password
+
+
+
+
+
+.. class:: UserLogIn(formdata=_Auto, **kwargs)
+
+
+ Bases: :py:obj:`flask_wtf.FlaskForm`
+
+ Flask-specific subclass of WTForms :class:`~wtforms.form.Form`.
+
+ If ``formdata`` is not specified, this will use :attr:`flask.request.form`
+ and :attr:`flask.request.files`. Explicitly pass ``formdata=None`` to
+ prevent this.
+
+ .. attribute:: email
+
+
+
+
+ .. attribute:: password
+
+
+
+
+
diff --git a/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt b/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt
new file mode 100644
index 0000000..e130485
--- /dev/null
+++ b/docs/_build/html/_sources/autoapi/app/forms/index.rst.txt
@@ -0,0 +1,15 @@
+:mod:`app.forms`
+================
+
+.. py:module:: app.forms
+
+
+Submodules
+----------
+.. toctree::
+ :titlesonly:
+ :maxdepth: 1
+
+ app_forms/index.rst
+
+