Karen,
That patch is actually kind of beautiful. Just in case someone else is
looking at this as of the current codebase the custom renderer would
like like this:
class MyRenderer(RadioFieldRenderer):
    def render(self):
        return mark_safe(u'\n%s\n' % u'\n'.join([u'%s' % w for w in
self]))

class SearchForm(forms.Form):
    shape   =
forms.ChoiceField(widget=forms.RadioSelect(renderer=MyRenderer))

I'd still rather have access to each of the items within the template
though. I'm trying to match up each of the radio buttons with an
image, and it'd be easier to handle within the template.

Thanks,
Mike.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to