Hi Simon!

Simon Johnston wrote:
> I have followed the tutorials in setting up a basic index and detail
> page for one of my model classes. I created the project level urls.py
> as follows:
> 
> from django.conf.urls.defaults import *
> urlpatterns = patterns('',
>     (r'^accounts/$', include('RealLife.crm.urls')),
>     (r'^admin/', include('django.contrib.admin.urls.admin')),
> )

You need to remove the $ after accounts/. Like in the line below.

Michael


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

Reply via email to