urls.py
author ymh <ymh.work@gmail.com>
Wed, 22 Jan 2014 16:56:18 +0100
changeset 584 9be5aaedfe6a
parent 0 40c8f766c9b8
permissions -rw-r--r--
add missing resources to buildout.cfg

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