from otree.api import Currency as c, currency_range from . import models from ._builtin import Page, WaitPage from .models import Constants import random import time class Introduction(Page): pass class Questions(Page): form_model = 'player' form_fields = ['female','age','grade', 'department','other_department','covid_effect','precaution','worries','relations','worries2','relatives','relatives_number', 'perception', 'living', 'living_number', 'meeting', 'location', 'team_work1','team_work2', 'team_work3'] class End(Page): pass page_sequence = [ Introduction, Questions, End ]