from otree.api import * c = cu doc = 'Lettura dashboard interattiva e identificazione di alcune inefficienze ' class C(BaseConstants): NAME_IN_URL = 'BA' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass class Instructions(Page): form_model = 'player' class Dashboard(Page): form_model = 'player' timeout_seconds = 1260 page_sequence = [Instructions, Dashboard]