I'm using django-tagging and I think it's causing an error when I try
to access the admin page. If I comment out the urls that reference
django-tagging views the error goes away.
from django.conf.urls.defaults import *
from blog.models import Entry, Link
from tagging.models import Tag
urlpatterns = patterns(''
(r'^$', 'django.views.generic.list_detail.object_list',
{ 'queryset': Tag.objects.all() }),
(r'^entries/(?P<tag>[-\w]+)/$',
'tagging.views.tagged_object_list', { 'queryset_or_model': Entry,
'template_name': 'blog/entries_by_tag.html' }),
(r'^links/(?P<tag>[-\w]+)/$', 'tagging.views.tagged_object_list',
{ 'queryset_or_model': Link, 'template_name': 'blog/
links_by_tag.html' }),
)
Thanks for any suggestions,
Jason
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
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=.