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 = 'Questionnaire' 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. ") S11Score = likert1("1.When men act to “help” women, they are often trying to prove they are better than women. ") S12Score = likert1("2.Men are less likely to fall apart in emergencies than women are. ") S13Score = likert1("3.Men will always fight to have greater control in society than women. ") S14Score = likert1("4.Even men who claim to be sensitive to women’s rights really want a traditional relationship at home, with the woman performing most of the housekeeping and childcare.") S15Score = likert1("5.Men are more willing to put themselves in danger to protect others ") S16Score = likert1("6.Men usually try to dominate conversations when talking to women. ") S17Score = likert1("7.Women are incomplete without men. ") S18Score = likert1("8.Most men pay lip service to equality for women but can’t handle having a woman as an equal. ") S19Score = likert1("9.Men are more willing to take risks than women. ") S20Score = likert1("10. Even if both members of a couple work, the woman ought to be more attentive to taking care of her man at home .") DebInt = models.StringField(blank=True,widget=widgets.CheckboxInput)