urls.py
author raph
Thu, 15 Jul 2010 16:54:29 +0200
changeset 284 730dd9fb2c77
parent 0 40c8f766c9b8
permissions -rw-r--r--
simplification of security check: all unauthorized exceptions are dealt with by context processors

from django.conf.urls.defaults import *

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    (r'^admin/', include(admin.site.urls)),    
    
    (r'', include('cm.urls')),
)

try :
    import urls_local
except ImportError :
    pass