from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) author = 'Diya Ganguly' doc = """ This document contains the likert scale for ASI """ class Constants(BaseConstants): name_in_url = 'likerquestion' players_per_group = 2 num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass def likert1(label): return models.IntegerField(choices=[[0, ''], [1, ''], [2, ''], [3, ''], [4, ''], [5, ''], [6, '']], label=label, widget=widgets.RadioSelect) class Player(BasePlayer): women_negotiator=models.IntegerField(min=0,max=100,label='(i)In your opinion, what percentage of women you meet in your day- to- day life are strong negotiators?') men_negotiator=models.IntegerField(min=0,max=100,label='(ii)In your opinion, what percentage of men you meet in your day-to to-day life are strong negotiators?') # ASI scores S1score = likert1("1.In a disaster, women ought not necessarily to be rescued before men. ") S2score = likert1("2.Many women are actually seeking special favors, such as hiring policies that favor them over men, under the guise of asking for “equality”.") S3Score = likert1("3. Many women have a quality of purity that few men possess. ") S4Score = likert1("4.Most women fail to appreciate fully all that men do for them. ") S5Score = likert1("5.Women seek to gain power by getting control over men.") S6Score = likert1("6.Men are incomplete without women.") S7Score = likert1("7.When women lose to men in a fair competition, they typically complain about being discriminated against.") S8Score = likert1("8.Women, compared to men, tend to have a superior moral sensibility.") S9Score = likert1("9.Feminists are making entirely unreasonable demands of men.") S10Score = likert1("10.Women, as compared to men, tend to have a more refined sense of culture and good taste. ") DebInt = models.StringField(blank=True,widget=widgets.CheckboxInput)