On Wed, 2008-09-17 at 08:59 -0700, Brandon Taylor wrote:
> Hello everyone,
> 
> I'm using named paths as such:
> 
> url(r'^[-\w]+/(?P<page_slug>[-\w]+)/$', 'render_page',
> name='nested_page_link'),
> url(r'^(?P<page_slug>[-\w]+)/$', 'render_page', name='page_link'),
> 

[...]
> 
> But, this throws an error:
> 
> Reverse for 'crider_law.nested_page_link' with arguments '(u'who-we-
> are', u'how-we-are-different')' and keyword arguments '{}' not found.

The URL patten for nested_page_link has one capturing group. You have
passed it two positional arguments in the reverse() call or url tag,
rather than just one. So it doesn't match (there could be another
pattern with the same name that accepts two parameters, or the same
pattern might accept an optional second parameter, so the number of
paraemeters must match).

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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