Re: django request.POST data caching

2011-11-01 Thread luke lukes
thanks kurtis for the reply. Anyway: solved -> fixed many error in the view (a lot of lines were written by copy and paste) On 30 Ott, 08:48, Kurtis Mullins wrote: > I apologize if this answer doesn't help much -- I'm confused by your > question. > > request.POST doesn't cache anything. It's

Re: django request.POST data caching

2011-10-30 Thread Kurtis Mullins
I apologize if this answer doesn't help much -- I'm confused by your question. request.POST doesn't cache anything. It's simply filled with data submitted by the browser on that specific request. If you click "Back" on your browser, many times the browsers will simply re-fill those form fields in

django request.POST data caching

2011-10-29 Thread luke lukes
hi have a template with a form and many inputs that pass some data trough a POST request to a view, that process them and send the result to another template. in the final template, if i use the browser back button to jump to the first view, i can see again old data. i refresh the page and i insert