feat: add initial/basic forms support
This commit is contained in:
parent
0604651be5
commit
95d3623a5e
16 changed files with 858 additions and 10 deletions
6
docs/api/wuttaweb/forms.base.rst
Normal file
6
docs/api/wuttaweb/forms.base.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
``wuttaweb.forms.base``
|
||||
=======================
|
||||
|
||||
.. automodule:: wuttaweb.forms.base
|
||||
:members:
|
6
docs/api/wuttaweb/forms.rst
Normal file
6
docs/api/wuttaweb/forms.rst
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
``wuttaweb.forms``
|
||||
==================
|
||||
|
||||
.. automodule:: wuttaweb.forms
|
||||
:members:
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
app
|
||||
db
|
||||
forms
|
||||
forms.base
|
||||
handler
|
||||
helpers
|
||||
menus
|
||||
|
|
|
@ -20,12 +20,15 @@ extensions = [
|
|||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx.ext.viewcode',
|
||||
'sphinx.ext.todo',
|
||||
]
|
||||
|
||||
templates_path = ['_templates']
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
|
||||
intersphinx_mapping = {
|
||||
'colander': ('https://docs.pylonsproject.org/projects/colander/en/latest/', None),
|
||||
'deform': ('https://docs.pylonsproject.org/projects/deform/en/latest/', None),
|
||||
'pyramid': ('https://docs.pylonsproject.org/projects/pyramid/en/latest/', None),
|
||||
'python': ('https://docs.python.org/3/', None),
|
||||
'webhelpers2': ('https://webhelpers2.readthedocs.io/en/latest/', None),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue