Revision a24fbf37 urls.py

b/urls.py
1 1
from django.conf.urls.defaults import *
2 2

  
3 3
# Uncomment the next two lines to enable the admin:
4
# from django.contrib import admin
5
# admin.autodiscover()
4
from django.contrib import admin
5
admin.autodiscover()
6 6

  
7 7
urlpatterns = patterns('',
8 8
    # Example:
9 9
    # (r'^flowspy/', include('flowspy.foo.urls')),
10 10

  
11 11
    # Uncomment the admin/doc line below to enable admin documentation:
12
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
12
    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
13 13

  
14 14
    # Uncomment the next line to enable the admin:
15
    # (r'^admin/', include(admin.site.urls)),
15
    (r'^admin/', include(admin.site.urls)),
16 16
)

Also available in: Unified diff