from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class PayPal(Page): form_model = "player" form_fields = ["paypal_id", "paypal_email"] class End(Page): pass page_sequence = [ PayPal, End ]