from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'Your name here' doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'General_Intro' players_per_group = None num_rounds = 1 instructions_template = 'General_Intro/GENEL BİLGİLER VE KURALLAR.html' asama_1_template = 'General_Intro/asama_1.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass