It is great that Django 1.4 allows fine graining of radio select
{% for radio in form.important_client reversed%}
{{radio.tag}}
While debuging a RadioSelect rendering, I got no idea of using radio tag and label elegantly. So here is my attempt to solve your problem:
{% for radio in form.important_client reversed %}
{% endfor %}
Instead of radio.index
property, which is not documented, you can use forloop.counter
.
Just in case I attach a screenshot of debug window, where example of radio
context is shown (form_of_field
variable on a figure):