from otree.api import * c = cu doc = '' class Constants(BaseConstants): name_in_url = 'final_feedback' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): feedback2 = models.LongStringField(label='What was your strategy in solving the knapsack?') feedback4 = models.LongStringField(label='What effect did the knapsack have on your consumer choices?') feedback3 = models.LongStringField(label ='Did you consciously try to avoid inconsistencies in your consumer choices?') feedback5 = models.LongStringField(label='Do you have any other feedback or suggestions on how we could improve this experiment?') feedback1 = models.LongStringField(label='Did you find the knapsack problems hard to solve?') class MyPage(Page): form_model = 'player' form_fields = ['feedback1', 'feedback2', 'feedback3', 'feedback4', 'feedback5' ] page_sequence = [MyPage]