storage.py¶
This module contains a storage model definition used by
apps.questionnaire.wizards.QuestionnaireWizard to temporarily
store all filled in information from the questionnaires.
Class definitions:
-
class
apps.questionnaire.storage.DatabaseStorage(*args, **kwargs)[source]¶ Bases:
formtools.wizard.storage.base.BaseStorageWizard database storage class stores the temporary data of a wizard in a database instead of the session or a cookie
-
get_unclean_data(step)[source]¶ Get the unclean data for a step
- Args:
- step: the step key
- Returns:
- The values in dict format
-