urls.py
author raph
Mon, 23 Aug 2010 17:57:59 +0200
changeset 310 c6d3cf22f2cf
parent 0 40c8f766c9b8
permissions -rw-r--r--
do not use deprecated package ucs

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