Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change naming of form questions #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading