django-wizard-builder

Create multi-page forms from the Django admin


Keywords
django-wizard-builder, django
License
BSD-3-Clause
Install
pip install django-wizard-builder==2.5.7

Documentation

django-wizard-builder

Status Support
Build Status python 3.6
PyPI Version django 1.11

Installation

django settings

INSTALLED_APPS = [
    'django.contrib.sites',
    'nested_admin',
    'widget_tweaks',
    'wizard_builder',
]

urls.py

urlpatterns = [
    url(r'^nested_admin/', include('nested_admin.urls')),
    url(r'^admin/', admin.site.urls),
]

Developement

Welcome to the Callisto Product Team! Here's a list of things you'll need to get started:

$ make install-osx  # on osx
$ make app-setup

cleanup / linting / tests

$ make clean-lint
$ make test-fast