prune unnecessary imports
[matthijs/upstream/django-ldapdb.git] / urls.py
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     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
9     # to INSTALLED_APPS to enable admin documentation:
10     (r'^admin/doc/', include('django.contrib.admindocs.urls')),
11
12     # Uncomment the next line to enable the admin:
13     (r'^admin/', include(admin.site.urls)),
14 )