Re: passing extra parameters with named urls

2008-12-19 Thread Masklinn
On 19 Dec 2008, at 00:00 , DragonSlayre wrote: > url(r'^register/$', > register, > {'extra_context' : {'currentmaintab' : > 'account'}}, > name='registration_register', > ), > Good now you know

Re: passing extra parameters with named urls

2008-12-18 Thread DragonSlayre
url(r'^register/$', register, {'extra_context' : {'currentmaintab' : 'account'}}, name='registration_register', ), It would have been nice if you could have told me straight up.

Re: passing extra parameters with named urls

2008-12-18 Thread Masklinn
On 18 Dec 2008, at 23:21 , DragonSlayre wrote: > > Hi, > > I'm currently working with django-registration, and have the following > url pattern (it's included from my other url pattern): > > url(r'^register/$', > register, >

passing extra parameters with named urls

2008-12-18 Thread DragonSlayre
Hi, I'm currently working with django-registration, and have the following url pattern (it's included from my other url pattern): url(r'^register/$', register, name='registration_register', ), This calls a view: