from otree.api import * doc = """ Information on 6 beggars and their interactions. """ class C(BaseConstants): NAME_IN_URL = 'beggars_Items' PLAYERS_PER_GROUP = None NUM_ROUNDS = 6 TIMER_TEXT = "शेष समय:" class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): # Question: Gender of the beggar (multiple choices) beggar_gender = models.IntegerField( label="भिखारी का लिंग क्या है?", choices=[ [1, "पुरुष"], [2, "महिला"], ], blank=True, widget=widgets.RadioSelect, ) beggar_age = models.IntegerField( label="भिखारी की उम्र लगभग कितनी है?", choices=[ [1, "बच्चा (<12 वर्ष)"], [2, "किशोर (13-19 वर्ष)"], [3, "वयस्क (20-59 वर्ष)"], [4, "वरिष्ठ (60+)"], ], blank=True, widget=widgets.RadioSelect, ) beggar_in_group = models.IntegerField( label="भिखारी समूह में है या अकेले या छोटे बच्चे सहित?", choices=[ [1, "समूह"], [2, "अकेला"], [3, "बच्चे सहित"], ], blank=True, widget=widgets.RadioSelect, ) beggar_disability = models.IntegerField( label="क्या भिखारी विकलांग है?", choices=[ [1, "हाँ"], [2, "नहीं"], ], blank=True, widget=widgets.RadioSelect, ) beggar_footwear = models.IntegerField( label="क्या भिखारी ने चप्पल/जूते पहने हैं?", choices=[ [1, "हाँ"], [2, "नहीं"], ], blank=True, widget=widgets.RadioSelect, ) beggar_clothes = models.IntegerField( label="भिखारी के कपड़े कैसे हैं?", choices=[ [1, "पूरे"], [2, "आधे"], [3, "धार्मिक"], ], blank=True, widget=widgets.RadioSelect, ) beggar_mainItem = models.IntegerField( label="भिखारी द्वारा दी जाने वाली मुख्य वस्तु क्या है?", choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, ) beggar_mainItem_Other = models.StringField( label="यदि अन्य तो क्या?", blank=True, ) g1_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g1_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g1_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g1_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g1_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g1_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g1_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 2 (g2) g2_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g2_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g2_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g2_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g2_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g2_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g2_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 3 (g3) g3_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g3_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g3_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g3_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g3_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g3_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g3_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 4 (g4) # For Giver 4 (g4) g4_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g4_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g4_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g4_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g4_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g4_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g4_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 5 (g5) # For Giver 5 (g5) g5_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g5_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g5_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g5_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g5_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g5_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g5_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g6 # For Giver 6 (g6) g6_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g6_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g6_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g6_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g6_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g6_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g6_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g7 # For Giver 7 (g7) g7_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g7_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g7_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g7_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g7_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g7_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g7_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g8 # For Giver 8 (g8) g8_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g8_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g8_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g8_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g8_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g8_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g8_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g9 # For Giver 9 (g9) g9_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g9_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g9_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g9_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g9_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g9_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g9_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g10 # For Giver 10 (g10) g10_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g10_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g10_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g10_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g10_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g10_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g10_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g11 # For Giver 11 (g11) g11_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g11_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g11_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g11_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g11_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g11_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g11_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g12 g12_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g12_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g12_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g12_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g12_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g12_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g12_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 13 (g13) g13_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g13_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g13_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g13_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g13_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g13_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g13_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 14 (g14) g14_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g14_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g14_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g14_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g14_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g14_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g14_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 15 (g15) g15_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g15_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g15_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g15_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g15_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g15_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="" ) g15_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 16 (g16) g16_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g16_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g16_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g16_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g16_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g16_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="", ) g16_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For g17 # For Giver 17 (g17) g17_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g17_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g17_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g17_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g17_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g17_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="", ) g17_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 18 (g18) g18_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g18_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g18_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g18_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g18_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g18_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="", ) g18_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 19 (g19) g19_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g19_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g19_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g19_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g19_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g19_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="", ) g19_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # For Giver 20 (g20) g20_success = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g20_male = models.IntegerField( choices=[ [1, "पुरुष"], [0, "महिला"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g20_old = models.IntegerField( choices=[ [1, "वरिष्ठ"], [0, "वयस्क"], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g20_in_group = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g20_with_child = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) g20_item = models.IntegerField( choices=[ [1, "पेन/पेंसिल"], [2, "गुब्बारे"], [3, "फूल"], [4, "स्टिकर"], [5, "किताबें"], [6, "टिशु पेपर"], [7, "छोटे खिलौने"], [8, "खाने पीने का सामान (जैसे पापड़, पानी)"], [9, "कपड़े और सहायक उपकरण (धूप का चश्मा, नए आभूषण)"], [10, "घरेलू सामान (सफाई का सामान, सजावट के सामान)"], [11, "स्वास्थ्य और सौंदर्य सामान (हेयर एक्सेसरीज, सौंदर्य प्रसाधन)"], [12, "कार एक्सेसरीज (सन शील्ड, औक्स केबल, कार सजावट, कार फ्रेशनर)"], [13, "अन्य"], ], blank=True, label="", ) g20_took_item = models.IntegerField( choices=[ [1, "हाँ "], [0, "नहीं "], ], blank=True, label="", widget=widgets.RadioSelectHorizontal, ) # PAGES class Beggar(Page): form_model = "player" form_fields = [ "beggar_gender", "beggar_age", "beggar_in_group", "beggar_disability", "beggar_footwear", "beggar_clothes", "beggar_mainItem", "beggar_mainItem_Other" ] class Beggar_Instructions(Page): pass class Interactions_Table(Page): timeout_seconds = 60 form_model = 'player' form_fields = [ 'g1_success', 'g1_male', 'g1_old', 'g1_in_group', 'g1_with_child', 'g1_item', 'g1_took_item', 'g2_success', 'g2_male', 'g2_old', 'g2_in_group', 'g2_with_child', 'g2_item', 'g2_took_item', 'g3_success', 'g3_male', 'g3_old', 'g3_in_group', 'g3_with_child', 'g3_item', 'g3_took_item', 'g4_success', 'g4_male', 'g4_old', 'g4_in_group', 'g4_with_child', 'g4_item', 'g4_took_item', 'g5_success', 'g5_male', 'g5_old', 'g5_in_group', 'g5_with_child', 'g5_item', 'g5_took_item', 'g6_success', 'g6_male', 'g6_old', 'g6_in_group', 'g6_with_child', 'g6_item', 'g6_took_item', 'g7_success', 'g7_male', 'g7_old', 'g7_in_group', 'g7_with_child', 'g7_item', 'g7_took_item', 'g8_success', 'g8_male', 'g8_old', 'g8_in_group', 'g8_with_child', 'g8_item', 'g8_took_item', 'g9_success', 'g9_male', 'g9_old', 'g9_in_group', 'g9_with_child', 'g9_item', 'g9_took_item', 'g10_success', 'g10_male', 'g10_old', 'g10_in_group', 'g10_with_child', 'g10_item', 'g10_took_item', 'g11_success', 'g11_male', 'g11_old', 'g11_in_group', 'g11_with_child', 'g11_item', 'g11_took_item', 'g12_success', 'g12_male', 'g12_old', 'g12_in_group', 'g12_with_child', 'g12_item', 'g12_took_item', 'g13_success', 'g13_male', 'g13_old', 'g13_in_group', 'g13_with_child', 'g13_item', 'g13_took_item', 'g14_success', 'g14_male', 'g14_old', 'g14_in_group', 'g14_with_child', 'g14_item', 'g14_took_item', 'g15_success', 'g15_male', 'g15_old', 'g15_in_group', 'g15_with_child', 'g15_item', 'g15_took_item', 'g16_success', 'g16_male', 'g16_old', 'g16_in_group', 'g16_with_child', 'g16_item', 'g16_took_item', 'g17_success', 'g17_male', 'g17_old', 'g17_in_group', 'g17_with_child', 'g17_item', 'g17_took_item', 'g18_success', 'g18_male', 'g18_old', 'g18_in_group', 'g18_with_child', 'g18_item', 'g18_took_item', 'g19_success', 'g19_male', 'g19_old', 'g19_in_group', 'g19_with_child', 'g19_item', 'g19_took_item', 'g20_success', 'g20_male', 'g20_old', 'g20_in_group', 'g20_with_child', 'g20_item', 'g20_took_item', ] class Interactions_Instructions(Page): pass page_sequence = [Beggar_Instructions, Beggar, Interactions_Instructions, Interactions_Table]