Re: How do I pass a value through a template?

2006-10-10 Thread shaunc
Ivan Sagalaev wrote: > carlwenrich wrote: > > Thanks. I like the hidden input type idea. > > In practice it's harder. > > > About sessions, do they > > still work if the user's browser doesn't accept cookies? > > They don't. But in current web cookies are pretty much a requirement for > sane

Re: How do I pass a value through a template?

2006-10-10 Thread carlwenrich
Thanks. I like the hidden input type idea. About sessions, do they still work if the user's browser doesn't accept cookies? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: How do I pass a value through a template?

2006-10-10 Thread Ivan Sagalaev
carlwenrich wrote: > I have a view A that passes values (via dictionary pairs) to template > B, which has a form that posts values to a view C. I'd like to pass a > value from view A to view C through template B without having it appear > as a value in a visual element of the form. There are a

Re: How do I pass a value through a template?

2006-10-10 Thread carlwenrich
I guess this would be a good time to learn what they are. Thanks, I'll dive into the manual (again). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: How do I pass a value through a template?

2006-10-10 Thread patrickk
what about using sessions? p. Am 10.10.2006 um 22:32 schrieb carlwenrich: > > I have a view A that passes values (via dictionary pairs) to template > B, which has a form that posts values to a view C. I'd like to pass a > value from view A to view C through template B without having it >

How do I pass a value through a template?

2006-10-10 Thread carlwenrich
I have a view A that passes values (via dictionary pairs) to template B, which has a form that posts values to a view C. I'd like to pass a value from view A to view C through template B without having it appear as a value in a visual element of the form.