from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Intro(Page): form_model = 'player' class Overview(Page): form_model = 'player' class Managing_Your_Devision(Page): form_model = 'player' class Reporting_Earning(Page): form_model = 'player' class Internal_Audit(Page): form_model = 'player' class Calculation_of_payoff(Page): form_model = 'player' class Steps_in_the_study(Page): form_model = 'player' class Step_1(Page): form_model = 'player' class Step_2(Page): form_model = 'player' class Step_3(Page): form_model = 'player' class Step_4(Page): form_model = 'player' class Step_5(Page): form_model = 'player' class Payoff_calculation_examples(Page): form_model = 'player' class Example_1(Page): form_model = 'player' class Example_2(Page): form_model = 'player' class Example_3(Page): form_model = 'player' class Quiz_intro(Page): form_model = 'player' def before_next_page(self): self.participant.vars['Passed'] = 0 page_sequence = [Intro, Overview, Managing_Your_Devision, Reporting_Earning, Internal_Audit, Calculation_of_payoff, Steps_in_the_study, Step_1, Step_2, Step_3, Step_4, Step_5, Payoff_calculation_examples, Example_1, Example_2, Example_3, Quiz_intro]