I have some information that is set in the sessions, and I was wondering if it s possible to pass this info onto the URL for the view that uses this session data. I want this to be working in such a way that if the user bookmarks the page from that view, the session data is used to pass the variables onto the view. How can I do this?
I m having a filter view so I want the currently selected filters displayed on the URL...sorta like www.mysite.com/filter1/filter2/filter3/ then if filter2 is cleared I ll have www.mysite.com/filter1/filter3/
Currently my URLConf for the filter view looks like this:
(r ^filter/$ , filter ),
(r ^filter/(?P<p>d{2})/$ , filter ),