Re: Problem with simple file upload.

2010-12-22 Thread yiftah
Nick is right, you need to change your view code to handle_uploaded_file(request.FILES['uploaded']) instead of handle_uploaded_file(request.FILES['file']) I'm not sure a request object can process a file upload you may need to use RequestContext in your view definition On Dec 22, 7:50 pm, Nick Se

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 po

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?