source: urls.py @ 0:40c8f766c9b8

Revision 0:40c8f766c9b8, 321 bytes checked in by raph, 2 years ago (diff)

import from internal svn r 4007

Line 
1from django.conf.urls.defaults import *
2
3# Uncomment the next two lines to enable the admin:
4from django.contrib import admin
5admin.autodiscover()
6
7urlpatterns = patterns('',
8    (r'^admin/', include(admin.site.urls)),   
9   
10    (r'', include('cm.urls')),
11)
12
13try :
14    import urls_local
15except ImportError :
16    pass 
Note: See TracBrowser for help on using the repository browser.