from otree.api import * c = Currency # old name for currency; you can delete this. doc = """ this app contains the intro page The point of this experiment: It seems to be consensus in economics that free trade is mostly beneficial to an economy as a whole, even if some few people loose out. Still, public often seems opposed to new trade deals. The way this experiment is designed, is that some few people loose large while the large majority wins small. After that has happened, everyone can vote if they want to play a game like that. I would be interested in: - if people who lose have a much stronger objection to the game (even if they are reimbursed by the winners) than winners have for playing the game - if people who win want to reimburse people who lose and if maybe even they wouldn't want to play such a game More detailed instructions will be seen when starting the game. After the game come a few questions about demographics and position on free trade. """ class Constants(BaseConstants): name_in_url = 'startpage' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # FUNCTIONS # PAGES class Start(Page): pass page_sequence = [Start]