InstallationΒΆ

Wagtail Streamform is available on PyPI - to install it, just run:

pip install wagtailstreamforms

Once thats done you should add both wagtail.contrib.modeladmin and wagtailstreamforms to your INSTALLED_APPS settings:

INSTALLED_APPS = [
    ...
    'wagtail.contrib.modeladmin',
    'wagtailstreamforms'
    ...
]

Add the required urls:

from wagtailstreamforms import urls as streamforms_urls

urlpatterns = [
    ...
    url(r'^streamforms/', include(streamforms_urls)),
    ...
]

Run migrations:

python manage.py migrate

Go to your cms admin area and you will see the Streamforms section.