from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class ACTION_starting_page(Page): def vars_for_template(self): return { 'participation_fee': self.session.config['participation_fee'], } def before_next_page(self): self.player.set_payoff() class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class Results(Page): pass class dictator_ACTION_end_of_game(Page): pass class dictator_Introduction(Page): pass class benchmark2(Page): pass class benchmark2b(Page): pass class designated(Page): pass class designated2(Page): pass class extended2(Page): pass page_sequence = [ #dictator_Introduction, #dictator_ACTION_end_of_game, #benchmark2, #benchmark2b, #extended2, #designated, #designated2, ACTION_starting_page, ]