views:

17

answers:

1

Hi

I am new to Django, and want to do the following

I have a form that takes two inputs, processes and forwards the results to another page. I want to display the results in the same page with form page included.

How can I do that in Django?

Thank you

A: 

Save the data in the session after the POST, and pull it out of the session on the other page.

Ignacio Vazquez-Abrams

related questions