Ticket #9236: 9236.diff

File 9236.diff, 660 bytes (added by Tim Graham, 15 years ago)
  • docs/ref/contrib/admin/index.txt

     
    2727
    2828There are five steps in activating the Django admin site:
    2929
    30     1. Add ``django.contrib.admin`` to your ``INSTALLED_APPS`` setting.
     30    1. Add ``django.contrib.admin`` to your ``INSTALLED_APPS`` setting (as well
     31       as its dependencies: :mod:`django.contrib.auth` and
     32       :mod:`django.contrib.contenttypes`.
    3133
    3234    2. Determine which of your application's models should be editable in the
    3335       admin interface.
Back to Top