from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class FavTeam(Page): form_model = 'player' form_fields = ['fav_club', 'fav_club_strength', 'fav_team_time'] class LeastFavTeam(Page): form_model = 'player' form_fields = ['least_fav_club', 'least_fav_team_time'] page_sequence = [ FavTeam, LeastFavTeam ]