from otree.api import ( <<<<<<< HEAD models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) ======= models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) import random >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 doc = """ One player decides how to divide a certain amount between himself and the other player. See: Kahneman, Daniel, Jack L. Knetsch, and Richard H. Thaler. "Fairness and the assumptions of economics." Journal of business (1986): S285-S300. """ class Constants(BaseConstants): name_in_url = 'dictator' players_per_group = 2 num_rounds = 1 <<<<<<< HEAD instructions_template = 'dictator/instructions.html' ======= instructions_template = 'dictator/Instructions.html' >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 # Initial amount allocated to the dictator endowment = c(100) class Subsession(BaseSubsession): pass class Group(BaseGroup): kept = models.CurrencyField( doc="""Amount dictator decided to keep for himself""", <<<<<<< HEAD min=0, max=Constants.endowment, label="I will keep", ======= min=0, max=Constants.endowment, >>>>>>> 0982dc5566ffb7cb2176b6338e4f4497a3d00fc3 ) def set_payoffs(self): p1 = self.get_player_by_id(1) p2 = self.get_player_by_id(2) p1.payoff = self.kept p2.payoff = Constants.endowment - self.kept class Player(BasePlayer): pass