from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'Your name here' doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'conQuest' players_per_group = 6 num_rounds = 1 solution_1 = 23 solution_2 = 10 solution_3 = 11 solution_4 = 9 solution_5 = 27 solution_6 = 9.00 instructions_template = 'conQuest/instructions.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): answer_1 = models.IntegerField(label="Antwort") answer_2 = models.IntegerField(label="Antwort") answer_3 = models.IntegerField(label="Antwort") answer_4 = models.IntegerField(label="Antwort") answer_5 = models.IntegerField(label="Antwort") answer_6 = models.FloatField(label="Antwort")