from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Info(Page): def is_displayed(self): return self.round_number == 1 class Q1(Page): form_model = 'player' form_fields = [ 'item1_1', 'item1_2', 'item1_3', 'item1_4', 'item1_5', 'item1_6' ] def get_form_fields(self): fields = self.form_fields return fields page_sequence = [Info, Q1]