Simon Johnston wrote:

>from django.conf.urls.defaults import *
>urlpatterns = patterns('',
>    (r'^accounts/$', include('RealLife.crm.urls')),
>  
>
"$" is what breaks your URL.

>Using the URLconf defined in RealLife.urls, Django tried these URL
>patterns, in this order:
>   1. ^accounts/$
>   2. ^admin/
>The current URL, /accounts/1/, didn't match any of these.
>  
>
"/accounts/1/" won't match "accounts/$" since "$" means end of line.

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