from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Presentation(Page): form_model = 'player' class Control(Page): form_model = 'player' form_fields = ['control'] class Donation(Page): form_model = 'player' form_fields = ['donation'] page_sequence = [Presentation, Control, Donation]