source:
urls.py
@
0:40c8f766c9b8
| Revision 0:40c8f766c9b8, 321 bytes checked in by raph, 2 years ago (diff) |
|---|
| Line | |
|---|---|
| 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 |
Note: See TracBrowser
for help on using the repository browser.
