htmldjangoforms

How can I allow only one radio button to be checked?


Consider:

{% for each in AnswerQuery %}
    <form action={{address}}>
        <span>{{each.answer}}</span><input type='radio'>
        <span>Votes:{{each.answercount}}</span>
        <br>
    </form>
{% endfor %}

This is a part my Django template. It is supposed to print out several radio buttons, corresponding to the answers assigned to the buttons. But I don't know why I can check multiple radio buttons, which messed me up. It is supposed to only let me check on one radio button, and I had that somehow, but I lost it. How can I fix it?


Solution

  • Simply give them the same name:

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