from otree.api import * doc = """ Your app description """ class Constants(BaseConstants): name_in_url = 'post_survey' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): strategy = models.LongStringField( label="At the start of the session, what was your general strategy/plan of action?") strategy_reason = models.LongStringField( label="Why did you choose this plan of action? What was your reasoning? ") strategy_change = models.LongStringField( label="Did your strategy change at all over the course of the session? If yes, how/why?") strategy_others = models.LongStringField( label="What do you think other players' strategies were? Did they seem similar to your own?") # Pages class SurveyQuestions(Page): form_model = "player" form_fields = ["strategy", "strategy_reason", "strategy_change", "strategy_others"] class End(Page): pass page_sequence = [SurveyQuestions,End]