Hello,
In newforms, there should be an easy way to render the radio fields
separately in the template, because I'd like to insert other form
fields between the radio inputs, e.g.:
[o] Use existing one: [________]
[ ] Add a new one: [________]
At the moment (using widget=forms.RadioSelect) all radio items are
rendered in a list and I can't insert anything between them.
I'd like to be able to do something like this:
<ul>
<li>{{ form.radio_options.1 }}: {{ form.foo }}</li>
<li>{{ form.radio_options.2 }}: {{ form.bar }}</li>
</ul>
What do you think?
Thomas Steinacher
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django
developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---