Re: Context problem - From list to details and back

2008-03-07 Thread Justin Fagnani
Well one way of looking at this is that HTTP is supposed to be stateless, and GET requests are more or less intended to return the same results for the same parameters - assuming the data hasn't changed. In this case, storing state in the URL is exactly the right thing to do. It's ugly, but it'

Context problem - From list to details and back

2008-03-07 Thread efege
Hi, I'm new to Django and Python too, and just started planning the migration of an existing app to Django, after reading (though not very carefully) The Definitive Guide to Django. Excellent documentation, BTW! I'd like to know which is the recommended approach to handle this situation in Django