forked from extern/django-helpdesk
Add more detail on contrib.markup to docs. Closes #141.
This commit is contained in:
parent
4abd11f54f
commit
aa16eb6ef2
@ -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
|
||||
|
@ -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!
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user