urls.py
author raph
Mon, 14 Dec 2009 14:48:57 +0100
changeset 65 0d3298833461
parent 0 40c8f766c9b8
permissions -rw-r--r--
close frame tag

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