You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi everybody,
need to accomplish a matching in following fashion:
Users have to edit their psychological profile and select XOR characteristic on each category.
Qestions: 1. extroverted: (checkbox) or introverted: (checkbox)
2. organised: (checkbox) or spntaneous: (checkbox)
So only ONE choice is possible per question. Any suggestions or examples?
Best, cheers! :)
Russell Keith-Magee
unread,
Dec 5, 2014, 5:42:27 AM12/5/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django Users
Yes - don't use a checkbox, use a radio button.
Checkboxes are for Yes/No questions that are standalone. They can also be used to establish "membership of a set" when the list of options is relatively limited.
If you have a set of choices where the user must select one of a list of known options, the right input widget is a radio button, not a checkbox.