urls.py
author gibus
Thu, 08 Sep 2011 16:39:22 +0200
changeset 381 641430ef426c
parent 0 40c8f766c9b8
permissions -rw-r--r--
:active on whole 'add comment' button, not just text

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