hi, bruno, Thanks very much for your reply, it does help a lot...

On Oct 29, 1:29 am, bruno desthuilliers
<[EMAIL PROTECTED]> wrote:
> If you add "django.core.context_processors.request" to your
> settings.CONTEXT_PROCESSORS and use RequestContext objects in your
> views, you'll have access to the request object in your templates.
> Then it's just a matter of using the appropriate request attribute, in
> your case probably something like request.REQUEST['next'] (or, since
> it's in a template, {{ request.REQUEST.next }}
>
> cfhttp://docs.djangoproject.com/en/dev/ref/request-response/for more
> on the request object.
>
> Now note that if you use your own login view, this should be handled
> in the view function itself, and passed to the template via the
> context.
>
> HTH
--~--~---------~--~----~------------~-------~--~----~
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