InstallationΒΆ
Wagtail Streamform is available on PyPI - to install it, just run:
pip install wagtailstreamforms
Once thats done you need to add the following to your INSTALLED_APPS
settings:
INSTALLED_APPS = [
...
'wagtail.contrib.modeladmin',
'wagtailstreamforms'
...
]
Run migrations:
python manage.py migrate
Go to your cms admin area and you will see the Streamforms
section.