from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, Page, WaitPage ) cu = c doc = '' class Constants(BaseConstants): name_in_url = 'Instructions' players_per_group = None num_rounds = 1 general_benefit = c(10) volunteer_cost = c(2) volunteer_costH = c(6) volunteer_costL = c(2) instructions_fixed_cost_template = 'Instructions/instructions_fixed_cost.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass