On Jul 10, 5:41 pm, [EMAIL PROTECTED] wrote:
> what's the best way with django to remember a page and redirect to
> that page.
>
> so if you're atwww.mysite.com/entries/2008/jul/04/this-is-my-entry
> and you click a link that stores something in a different db field
> that once it goes through that view and enters the info it redirects
> you to the url above.

May be, start with something like this and refine it:

referrer = request.META.get('HTTP_REFERER', False)
if referrer:
    return HttpResponsRedirect(referrer)
else:
    # return a default page

-Rajesh D
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to