It is great that Django 1.4 allows fine graining of radio select
{% for radio in form.important_client reversed%}
{{radio.tag}}<label for="????">{{radio.choice_label}}</label>
{% endfor %}
but for some odd reason when using this methodology, the <input>
have no IDs. And hence I can't set the <label for='ID' />
accordingly. That causes big issues in my CSS.
Is there anyway to get the IDs set nonetheless?