Ticket #16552: admin_dependencies-16552.diff

File admin_dependencies-16552.diff, 966 bytes (added by teraom, 13 years ago)
  • docs/ref/contrib/admin/index.txt

     
    1919    1. Add ``'django.contrib.admin'`` to your :setting:`INSTALLED_APPS`
    2020       setting.
    2121
    22     2. Admin has three dependencies - :mod:`django.contrib.auth`,
    23        :mod:`django.contrib.contenttypes` and :mod:`django.contrib.messages`.
    24        If these applications are not in your :setting:`INSTALLED_APPS` list,
    25        add them.
     22    2. Admin has four dependencies - :mod:`django.contrib.auth`,
     23       :mod:`django.contrib.contenttypes`, :mod:`django.contrib.sessions`
     24       and :mod:`django.contrib.messages`. If these applications are not in
     25       your :setting:`INSTALLED_APPS` list, add them.
    2626
    2727    3. Add ``django.contrib.messages.context_processors.messages`` to
    2828       :setting:`TEMPLATE_CONTEXT_PROCESSORS` and
Back to Top