feature: selectoptions can now be ordered.#216
Open
RoordinkFrank wants to merge 4 commits intodevelopfrom
Open
feature: selectoptions can now be ordered.#216RoordinkFrank wants to merge 4 commits intodevelopfrom
RoordinkFrank wants to merge 4 commits intodevelopfrom
Conversation
Contributor
Author
XanderVertegaal
approved these changes
Apr 13, 2026
Contributor
XanderVertegaal
left a comment
There was a problem hiding this comment.
Works well!
As you mentioned, some parts of the code that are now duplicated (conversion of str -> list[int], making sure that all IDs exist) could be outfactored to reusable functions to make things a bit more DRY, but you may leave that for another PR if desired.
|
|
||
|
|
||
| class SelectQuestionAdminForm(ModelForm): | ||
| options_order = CharField( |
Contributor
There was a problem hiding this comment.
I prefer option_order, to keep things in line with substep_order and question_order. Make sure to also change this in admin.py.
|
|
||
| # Validate that the provided IDs exist. | ||
| available_ids = [question.id for question in self.instance.options.all()] | ||
| # In instance.NAME.all(), NAME is the verbose name. |
Contributor
There was a problem hiding this comment.
This comment belongs to the line above it. I also think you mean related name when you say verbose name (which is something else).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

fixes #174
Forms.py is slowly getting more duplicate code. I don´t think this can be easily changed but perhaps something to look into after the MVP.