Re: Custom urlconfs in django.contrib.auth tests failing when reverse is used in templates

2009-05-21 Thread Russell Keith-Magee
On Fri, May 22, 2009 at 3:08 AM, Andrew Fong wrote: > > Figured this out somewhat: To get around this, you can do something > like this when referencing external apps in auth templates: > > {% url project.other_app.views.other_view as view %} > > This won't raise an error

Re: Custom urlconfs in django.contrib.auth tests failing when reverse is used in templates

2009-05-21 Thread Andrew Fong
Figured this out somewhat: To get around this, you can do something like this when referencing external apps in auth templates: {% url project.other_app.views.other_view as view %} This won't raise an error if that reference doesn't work. Still, this feels a bit hackish. I think brittle auth