Hi,

Named URLs don't work for me so far. I'm using rev 5180.

In my site's urls.py I have:
(r'^', include('telemeta.urls')),

In telemeta/urls.py:
url(r'^collections/(?P<object_id>[0-9A-Z._-]+)/?$',
        'django.views.generic.list_detail.object_detail',
        dict(all_collections, template_name="collection_detail.html"),
        name="telemeta-collection-detail"),

The following raise no error and renders nothing:
{% url telemeta-collection-detail p.id %}

Same thing with:
{% url telemeta-collection-detail object_id=p.id %}

What am I doing wrong ?

--
  Olivier

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