from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Risks_Corruption(Page): form_model = 'player' form_fields = ['risk', 'predictor', 'network_public', 'network_private', 'bribes', 'corruption_in_KZ', 'corruption_10yearsago', 'corruption_occurrence', 'corruption_gov', 'anti_corruption', 'corruption_perp'] class Corruption(Page): form_model = 'player' form_fields = ['corruption_compare', 'beh1', 'beh2', 'beh3', 'beh4', 'beh5', 'beh6', 'beh7', 'beh8', 'wage', 'penalty'] class Bureaucracy(Page): form_model = 'player' form_fields = ['bureaucracy1', 'reporting', 'efficiency', 'paperwork', 'stamps'] class Cheating(Page): form_model = 'player' form_fields = ['cheating_on_tests', 'punishment_for_lying', 'reward_honesty', 'report_cheating', 'report_by_name', 'cheating_unethical', 'risk_cheating', 'innocent_cheating', 'never_cheat', 'cheating_lying'] class Results(Page): pass page_sequence = [Risks_Corruption, Corruption, Bureaucracy, Cheating]