urls.py
author gibus
Thu, 13 Oct 2011 14:51:17 +0200
changeset 389 eecda8559c1d
parent 0 40c8f766c9b8
permissions -rw-r--r--
Allow permalink on comments even when embedfing iframe.

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