On Thu, 2009-06-04 at 05:01 -0700, janedenone wrote:
> 
> On 3 Jun., 12:26, Tom Evans <tevans...@googlemail.com> wrote:
> > On Wed, 2009-06-03 at 02:56 -0700, janedenone wrote:
> > > Hi,
> >
> > > is it possible to use alternating url patterns without confusing the
> > > reverse lookup mechanism?
> >
> > > I'd like to do something like
> >
> > > (r'^(authors|autoren)/(?P<author_id>[_a-z]+)$', 'author_detail'),
> >
> > > Kind regards,
> > > Jan
> >
> > Define two separate URLs, and name them:
> > (r'^authors/(?P<author_id>[_a-z]+)$', 'author_detail', name='author_detail),
> > (r'^autoren/(?P<author_id>[_a-z]+)$', 'author_detail', 
> > name='autoren_detail),
> >
> > Use the name in calls to reverse() or {% url %}. If you need to
> > distinguish between the two urls, pass a different default parameter to
> > each of them. 
> > Seehttp://docs.djangoproject.com/en/dev/topics/http/urls/#passing-extra-...
> 
> Hi Tom.
> 
> thanks! That's what I did so far. I was looking for a way to merge the
> separate URLs.
> 
> - Jan

You don't want to do that, django would not be able to determine which
URL you intended in a reverse() or {% url %} call, as you indicated.

Cheers

Tom


--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to