from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants '''Does nothing special at the moment. May change later.''' class WelcomePage(Page): #Welcomes subject to experiment pass class TaskOverview(Page): #Provides general overview of tasks pass class RoleAssignment(Page): #Informs player of his/her role pass class LoanAgreement(Page): #Explains the loan agreement/package that will be created in the game pass class LoanFulfillment(Page): #Explains the process of loan fulfillment pass class LoanRemediation(Page): #Explains loan remediation process pass class TaskRepayment(Page): #Explains how task payoffs are determined pass class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class InstructionsResults(Page): def before_next_page(self): self.participant.payoff += Constants.instructions_payoff page_sequence = [ WelcomePage, TaskOverview, RoleAssignment, LoanAgreement, LoanFulfillment, LoanRemediation, TaskRepayment, #ResultsWaitPage, #Results ]