How to allow only one radio button to be checked? How to allow only one radio button to be checked? django django

How to allow only one radio button to be checked?


Simply give them the same name:

<input type="radio" name="radAnswer" />


They need to all have the same name.


All radio buttons have to have the same name:

<input type='radio' name='foo'>

Only 1 radio button of each group of buttons with the same name can be checked.