10 lines
407 B
Python
10 lines
407 B
Python
# add all the question types to QuestionChoices before anything else
|
|
from .. import add_type
|
|
|
|
from . import simple # store value as returned
|
|
from . import choice # multiple choice, do checks
|
|
from . import range_or_number # range of numbers
|
|
from . import timeperiod # time periods
|
|
from . import custom # backwards compatibility support
|
|
|
|
add_type('custom', 'Custom field') |