from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class EQ(Page): form_model = 'player' form_fields = [f'EQ_{str(n) if n > 9 else str(0) + str(n)}' for n in range(1, 34)] class TheEnd(Page): pass page_sequence = [ EQ, TheEnd ]