hello, in urls.py:
urlpatterns = patterns('', (r'^/?$', 'path.to.myview'), (r'^(\w+)/?$', 'path.to.myview')) in views.py: def myview(request, name = 'index') : ... in template: {% url path.to.myview var %} the url tag in the template is rendered as "//?" if i comment out the first item in the patterns (the one that matches the empty url path) the {% url %} tag renders correctly. i think the reason is two entries in the urlpatterns with the same view. is this a bug? thanks konstantin --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---