On 11/19/05, Bryan Murdock <[EMAIL PROTECTED]> wrote: > How do you write a urlpattern to match something like this: > > /accounts/login/?next=/add_object/
The parameters are not matched against the url patterns, in your view-func you can get it as request.GET['next']. /s