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 = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass def likert1(label): return models.IntegerField(initial=0, choices=[[0, ''], [1, ''], [2, ''], [3, ''], [4, ''], [5, '']], label=label,widget=widgets.RadioSelect) class Player(BasePlayer): # ASI scores S1score = likert1("1.No matter how accomplished he is, a man is not truly complete as a person unless he has the love of a woman") 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.In a disaster, women ought not necessarily to be rescued before men.") S4Score = likert1("4.Most women interpret innocent remarks or acts as being sexist.") S5Score = likert1("5.Women are too easily offended.") S6Score = likert1("6.People are often truly happy in life without being romantically involved with a member of the other sex.") S7Score = likert1("7.Feminists are not seeking for women to have more power than men.") S8Score = likert1("8.Many women have a quality for purity that few men possess.") S9Score = likert1("9.Women should be cherished and protected by men.") S10Score = likert1("10.Most women fail to appreciate fully all that men do for them.") S11Score = likert1("11.Women seek to gain power by getting control over men.") S12Score = likert1("12.Every man ought to have a woman he adores.") S13Score = likert1("13.Men are complete without women.") S14Score = likert1("14.Women exaggerate problems they have at work.") S15Score = likert1("15.Once a woman gets a man to commit to her, she usually tries to put him on a tight leash.") S16Score = likert1("16.When women lose to men in a fair competition, they typically complain about being discriminated against.") S17Score = likert1("17.A good woman should be set on a pedestal by her man.") S18Score = likert1("18.There are actually very few women who get a kick out of teasing men by seeming sexually available and then refusing male advances.") S19Score = likert1("19.Women, compared to men, tend to have a superior moral sensibility.") S20Score = likert1("20.Men should be willing to sacrifice their own well being in order to provide financially for the women in their lives.") S21Score = likert1("21. Feminists are making entirely reasonable demands of men.") S22Score = likert1("22. Women, as compared to men, tend to have a more refined sense of culture and good taste")