On Sep 13, 2008, at 8:32 AM, Shantp wrote:

>
> Hi,
>
> I did a lot of searching on this and can't figure out what I'm doing
> wrong. Here's what's in my urls.py:
>
> share_detail = {
>       'queryset': Share.objects.all(),
> }
>
> (r'^comments/', include('django.contrib.comments.urls')),
> (r'^comments/(?P<slug>[-\w]+)/?$',
> 'django.views.generic.list_detail.object_detail',
>        dict(share_detail, slug_field='slug',
> template_object_name='share', template_name='share_page.html')),

This looks like you're putting your urlconf patterns directly at the  
top level of the file. They need to be encapsulated in a patterns()  
call, and assigned to a variable called 'urlpatterns'. Right now  
django's looking for that 'urlpatterns' variable, and not finding it.  
Take a look at the sample urlconf file:

http://docs.djangoproject.com/en/dev/topics/http/urls/#example

Yours,
Eric

>
>
> I'm getting this error:
>
> Exception Type:       AttributeError
> Exception Value:      'module' object has no attribute 'urlpatterns'
>
> Can anyone help me understand what is wrong with my urls?
> >


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

Reply via email to