| author | raph |
| Mon, 04 Jan 2010 10:38:09 +0100 | |
| changeset 72 | b0c777412d0a |
| parent 0 | 40c8f766c9b8 |
| permissions | -rw-r--r-- |
| 0 | 1 |
from django.conf.urls.defaults import * |
2 |
||
3 |
# Uncomment the next two lines to enable the admin: |
|
4 |
from django.contrib import admin |
|
5 |
admin.autodiscover() |
|
6 |
||
7 |
urlpatterns = patterns('', |
|
8 |
(r'^admin/', include(admin.site.urls)), |
|
9 |
||
10 |
(r'', include('cm.urls')), |
|
11 |
) |
|
12 |
||
13 |
try : |
|
14 |
import urls_local |
|
15 |
except ImportError : |
|
16 |
pass |