Re: Named URL patterns with included urlconfs

2007-11-18 Thread Justin Fagnani
Solved. The url names were apparently being cached, so it appeared that naming a included url didn't work. Lesson: always restart django when changing url names -Justin On 11/18/07, Justin Fagnani <[EMAIL PROTECTED]> wrote: > > I've noticed that if you're trying to use named url patterns with an

Named URL patterns with included urlconfs

2007-11-18 Thread Justin Fagnani
I've noticed that if you're trying to use named url patterns with an included urlconf that you need to label the pattern that includes the urlconf as well as the pattern being included with the same name. This seems to prevent having more than one named url in an included urlconf. Here's an example