Content creation wizards
django CMS uses it for creating Pages, but you can add your own models to it.
Then add a cms_wizards.py
file, containing:
from cms.wizards.wizard_base import Wizard
from cms.wizards.wizard_pool import wizard_pool
class PollWizard(Wizard):
pass
title="Poll",
form=PollWizardForm,
description="Create a new Poll",
)
wizard_pool.register(poll_wizard)
Note
That would require a much more sophisticated form and processing than is possible within the scope of this tutorial.