Re: PicklingError on submit

2010-04-08 Thread clea
Omg that was it! I just named it wrong. Thank you SO MUCH- I copied and pasted that line from somewhere else, and didn't change variable name (terribly stupid mistake). Also you are correct, I do have context as a function in that same file- not a very informative error! In any case- thank you a

Re: PicklingError on submit

2010-04-08 Thread Tom Evans
On Thu, Apr 8, 2010 at 2:00 PM, clea wrote: > Hello- > I am having the following problem: > I have a normal form within an html page (here is a shortened > version): > > > > {% for setting in context.form_options.clinical_settings %} > {{ setting.label }} > {% endfor %} > > value=

PicklingError on submit

2010-04-08 Thread clea
Hello- I am having the following problem: I have a normal form within an html page (here is a shortened version): {% for setting in context.form_options.clinical_settings %} {{ setting.label }} {% endfor %} On submit, I have: def context_form(request): if request.method =