from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'policy_mix' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): subsidy = models.IntegerField() non_subsidy = models.IntegerField() # PAGES class policy_mix(Page): pass # form_model = 'player' # form_fields = ['subsidy'] page_sequence = [ policy_mix ]