from typing import List from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction(Page): #timeout_seconds = 60 pass class gps(Page): form_model = 'player' form_fields = ['risk_WP13417', 'future_WP13418R', 'Punish_WP13419R', 'punish_WP13420R', 'good_cause_WP13421R', 'favor_WP13422R', 'revange_WP13423R', 'intention_WP13424R', 'math_WP13425R', 'postpone_WP13426R', 'present_WP13458R', 'donate_WP13459R'] class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class End(Page): pass page_sequence = [ Introduction, gps, # End, ]