Ticket #8496: 8496.diff

File 8496.diff, 1.3 KB (added by Eric Vander Weele, 16 years ago)
  • django/conf/project_template/urls.py

     
    88    # Example:
    99    # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
    1010
    11     # Uncomment the next line to enable admin documentation:
     11    # Uncomment the next line and add 'django.contrib.admindocs' to INSTALLED_APPS to enable admin documentation:
    1212    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    1313
    1414    # Uncomment the next line to enable the admin:
  • docs/intro/tutorial02.txt

     
    5252              # Example:
    5353              # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
    5454
    55               # Uncomment the next line to enable admin documentation:
     55              # Uncomment the next line and add 'django.contrib.admindocs' to INSTALLED_APPS to enable admin documentation:
    5656              # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    5757
    5858              # Uncomment the next line for to enable the admin:
Back to Top