Re: slightly complicated radio input question

2010-12-14 Thread Andre Terra
My idea would be to use the MultiWidget class with some templating to do the HTML part. http://www.hoboes.com/Mimsy/hacks/django-forms-edit-inline/multiwidgets-templates/ shine some light on the subject, but I'm not sure how outdated it might be (the blog post is from 2007 IIRC...) I'm at work

Re: slightly complicated radio input question

2010-12-13 Thread yiftah
thanks Ilian, I used the RadioSelect widget to create a radio list. but i want to create text/select elements between the radio elements (as in my example above) any ideas? yiftah -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: slightly complicated radio input question

2010-12-10 Thread Ilian Iliev
Hi, there is a radio select widget for Django Forms -> http://docs.djangoproject.com/en/dev/ref/forms/widgets/ On Sat, Dec 11, 2010 at 12:59 AM, yiftah wrote: > hi > > I want to create a form with django that has a radio selection that > looks like > > Entire > Range (as

slightly complicated radio input question

2010-12-10 Thread yiftah
hi I want to create a form with django that has a radio selection that looks like Entire Range (as in the file) Specified Range:    Starting time     Ending time Maximum Temperature (ΔTM) only, with Savitzki-Golay polynomial no any idea how to write the form class to represent this?