diff --git a/README.rst b/README.rst index fbeb50a1..496b6e02 100644 --- a/README.rst +++ b/README.rst @@ -27,6 +27,7 @@ Dependencies (pre-flight checklist) 3. South for database migrations (highly recommended, but not required). Download from http://south.aeracode.org/ 4. An existing WORKING Django project with database etc. If you cannot log into the Admin, you won't get this product working. +5. You must have ``django.contrib.markup`` in your ``settings.INSTALLED_APPS`` setting. **NOTE REGARDING SQLITE AND SEARCHING:** If you use sqlite as your database, the search function will not work as diff --git a/docs/install.rst b/docs/install.rst index da306c6c..5e217941 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -29,7 +29,7 @@ Download, extract, and drop ``helpdesk`` into your ``PYTHONPATH`` Adding To Your Django Project ----------------------------- -1. Edit your ``settings.py`` file and add ``helpdesk`` to the ``INSTALLED_APPS`` setting. You also need ``django.contrib.admin`` in ``INSTALLED_APPS`` if you haven't already added it. eg:: +1. Edit your ``settings.py`` file and add ``helpdesk`` to the ``INSTALLED_APPS`` setting. You also need ``django.contrib.admin`` and ``django.contrib.markup`` in ``INSTALLED_APPS`` if you haven't already added it. eg:: INSTALLED_APPS = ( 'django.contrib.auth', @@ -37,7 +37,7 @@ Adding To Your Django Project 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', # Required for helpdesk admin/maintenance - 'django.contrib.markup', # Required for text display + 'django.contrib.markup', # Required for helpdesk text display 'south', # Highly recommended to make database migrations simpler. 'helpdesk', # This is new! )