Skip to content

Commit

Permalink
Change naming of form questions
Browse files Browse the repository at this point in the history
Form questions:
1) Change naming “Choose one from a list” to “Radio button (Choose one option)”
2) “Choose multiple from a list” to “Checkbox (Choose one or several options)”

This is done to better reflect what these options do.

fixes: #12
  • Loading branch information
Aryan20 committed Feb 15, 2024
1 parent c67b677 commit ac7680a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Release Notes
=============

- :feature:`orga:form` Change “Choose one from a list” to “Radio button (Choose one option)” and “Choose multiple from a list” to “Checkbox (Choose one or several options)” for better clarity about their purpose.
- :feature:`orga:sidebar` Renamed CfP to Call for Speakers for clarity
- :feature:`orga,820` Restricted tracks now link to the page where you can create access codes for that track.
- :announcement:`admin,1678` Due to its incomplete and complex nature, the ``import_schedule`` admin command has been removed. If you want to import a schedule, despite all the complexities, please use the pretalx-downstream plugin instead.
Expand Down
4 changes: 2 additions & 2 deletions src/pretalx/submission/models/question.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class QuestionVariant(Choices):
(DATETIME, _("Date and time")),
(BOOLEAN, _("Yes/No")),
(FILE, _("File upload")),
(CHOICES, _("Choose one from a list")),
(MULTIPLE, _("Choose multiple from a list")),
(CHOICES, _("Radio button (Choose one option)")),
(MULTIPLE, _("Checkbox (Choose one or several options)")),
]


Expand Down

0 comments on commit ac7680a

Please sign in to comment.