What is the \"djangoy\" way to approach this problem:
In my form class, I have a forms.ChoiceField whose widget is a forms.RadioSelect widget, one of whose choices n
If I understand your problem correctly, you can access choices tuple in template:
{# Assuming {{ field }} here is {{ form.rad }} #} {% for choice in field.field.choices %} {{ choice.1 }} {% if choice.0 == 'one' %} {# Necessary field here #} {{ form.bar }} {% else %} No Textbox {% endif %} {% endfor %}