from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Wait_before_images(WaitPage): pass class Introduction(Page): form_model = 'player' class Raven6(Page): form_model = 'player' form_fields = ['Raven6'] class Raven7(Page): form_model = 'player' form_fields = ['Raven7'] class Raven8(Page): form_model = 'player' form_fields = ['Raven8'] class Wait_after_images(WaitPage): pass page_sequence = [Wait_before_images, Introduction, Raven6, Raven7, Raven8, Wait_after_images]