emvecchi commited on
Commit
d6ead38
1 Parent(s): 4e10e4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -153,6 +153,14 @@ annotation_guidelines_fields: List[Field] = [
153
 
154
  intro_fields: List[Field] = [
155
  Field(type="container", title="**Introductory Questions**", children=[
 
 
 
 
 
 
 
 
156
  Field(name="intro_moderation_goals", type="textarea", title="As a moderator, what are your goals/objectives for the comment section?"),
157
  Field(name="intro_experience", type="textarea", title="What do you feel contributes to a good experience for the users/discussion?"),
158
  Field(name="intro_valuable_comment", type="textarea", title="What makes a comment or contribution valuable?"),
 
153
 
154
  intro_fields: List[Field] = [
155
  Field(type="container", title="**Introductory Questions**", children=[
156
+ Field(name="intro_role", type="radio", title="What experience do you have with online discussion moderation?",
157
+ other_params={'labels': ['Moderator for online deliberative platforms',
158
+ 'Moderator in r/ChangeMyView',
159
+ 'Moderator for newspaper digital platforms',
160
+ 'Academic researcher in the field of e-Democracy, deliberative discourse, computational argumentation, or the like',
161
+ 'Frequent contributor to moderated discussions online, eg CMV or similar',
162
+ 'Other'],
163
+ 'accepted_values': [0,1,2,3]}),
164
  Field(name="intro_moderation_goals", type="textarea", title="As a moderator, what are your goals/objectives for the comment section?"),
165
  Field(name="intro_experience", type="textarea", title="What do you feel contributes to a good experience for the users/discussion?"),
166
  Field(name="intro_valuable_comment", type="textarea", title="What makes a comment or contribution valuable?"),