Ticket #13681: admindocs_to_installed_apps.diff

File admindocs_to_installed_apps.diff, 1.1 KB (added by Andrews Medina, 14 years ago)
  • django/conf/project_template/settings.py

     
    9191    'django.contrib.messages',
    9292    # Uncomment the next line to enable the admin:
    9393    # 'django.contrib.admin',
     94    # Uncomment the next line to enable the admindocs:
     95    # 'django.contrib.admindocs',
    9496)
  • django/conf/project_template/urls.py

     
    88    # Example:
    99    # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
    1010
    11     # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
    12     # to INSTALLED_APPS to enable admin documentation:
     11    # Uncomment the admin/doc line below to enable admin documentation:
    1312    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    1413
    1514    # Uncomment the next line to enable the admin:
Back to Top