0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Fix module path (wagtailforms.models should be wagtail.contrib.forms.models)

This commit is contained in:
Matt Westcott 2018-09-21 10:53:51 +01:00 committed by GitHub
parent 088d3ffc21
commit 6454e500ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ Add ``wagtail.contrib.forms`` to your ``INSTALLED_APPS``:
'wagtail.contrib.forms',
]
Within the ``models.py`` of one of your apps, create a model that extends ``wagtailforms.models.AbstractEmailForm``:
Within the ``models.py`` of one of your apps, create a model that extends ``wagtail.contrib.forms.models.AbstractEmailForm``:
.. code-block:: python