from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Introduction(Page): pass class Time(Page): form_model = 'player' form_fields = ['time1', 'time2', 'time3', 'time4', 'time5', 'time6', 'time7', 'time8', 'time9', 'time10', ] class TimeResult(Page): pass page_sequence = [ Introduction, Time, #TimeResult, ]