source: sampleserver/urls.py@ 6244

Last change on this file since 6244 was 6202, checked in by roland, 16 years ago

changed some admin stuff in urls.py and models.py

File size: 381 bytes
Line 
1# (c) Roland van Laar
2from django.conf.urls.defaults import *
3
4from django.contrib import admin
5admin.autodiscover()
6
7urlpatterns = patterns('',
8 (r'^exodus/', include('exodus.urls')),
9 #The next line enables admin documents
10 (r'^admin/doc/', include('django.contrib.admindocs.urls')),
11
12 # Uncomment the next line for to enable the admin:
13 (r'^admin/(.*)', admin.site.root),
14
15)
Note: See TracBrowser for help on using the repository browser.