from os import environ PARTICIPANT_FIELDS = [ 'expiry', 'survey_participate', 'quota_screened_out', 'quota_counted', 'dem_age', 'dem_gender', 'dem_school', 'dem_land', ] SESSION_FIELDS = [ 'quota_counts', 'quota_limits', ] SESSION_CONFIGS = [ dict( name='ActiveMobi_all', display_name='Active Mobility (complete survey)', app_sequence=['Intro', 'Questionaire_pre', 'Screenout', 'Description_DCE', 'DCE', 'Questionaire_post'], num_demo_participants=10 ), dict( name='ActiveMobi_DCE', display_name='Active Mobility (only DCE)', app_sequence=['Intro', 'Description_DCE', 'DCE'], num_demo_participants=10 ), dict( name='ActiveMobi_Q_Post', display_name='Active Mobility (only final questionnaire)', app_sequence=['Intro', 'Questionaire_post'], num_demo_participants=10 ), dict( name='ActiveMobi_Quota', display_name='Active Mobility (DCE Quota)', app_sequence=['Intro', 'Questionaire_pre', 'Screenout', 'Questionaire_post'], num_demo_participants=10 ), ] SESSION_CONFIG_DEFAULTS = dict( real_world_currency_per_point=1.00, participation_fee=0.00, doc="" ) # NEW: stable room URL ROOMS = [ dict( name='respondi', display_name='Respondi', ), ] LANGUAGE_CODE = 'de' REAL_WORLD_CURRENCY_CODE = 'USD' USE_POINTS = True ADMIN_USERNAME = environ.get('ADMIN_USERNAME', 'default_admin') ADMIN_PASSWORD = environ.get('ADMIN_PASSWORD', 'default_password') DEMO_PAGE_INTRO_HTML = """ """ SECRET_KEY = '1994093248533'