from ._builtin import Page, WaitPage from otree.api import Currency as c, currency_range from .models import Constants class PaymentInfo(Page): <<<<<<< HEAD def vars_for_template(self): participant = self.participant return dict(redemption_code=participant.label or participant.code) ======= def vars_for_template(self): participant = self.participant return { 'redemption_code': participant.label or participant.code, } >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 page_sequence = [PaymentInfo]