diff --git a/docs/api.rst b/docs/api.rst index 97b7ee5f..26184827 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -1,6 +1,9 @@ API === +.. contents:: In this document... + :depth: 2 + A REST API (built with ``djangorestframework``) is available in order to list, create, update and delete tickets from other tools thanks to HTTP requests. diff --git a/docs/install.rst b/docs/install.rst index c28fefaf..0c9c338d 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -1,10 +1,13 @@ Installation/integration into an existing Django application -============ +============================================================ .. note:: For standalone installation, refer to the :doc:`standalone installation docs `. +.. contents:: In this document... + :depth: 2 + ``django-helpdesk`` installation isn't difficult, but it requires you have a bit of existing know-how about Django. diff --git a/docs/settings.rst b/docs/settings.rst index cac6b07a..7cc012cf 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -1,6 +1,9 @@ Settings ======== +.. contents:: In this document... + :depth: 2 + First, django-helpdesk needs ``django.core.context_processors.request`` activated, so you must add it to the ``settings.py``. Add the following:: TEMPLATES = [ @@ -86,6 +89,10 @@ These changes are visible throughout django-helpdesk - **HELPDESK_NAVIGATION_ENABLED** Show extended navigation by default, to all users, irrespective of staff status? **Default:** ``HELPDESK_NAVIGATION_ENABLED = False`` + +- **HELPDESK_SHOW_MY_TICKETS_IN_NAV_FOR_STAFF** Show "My tickets" for staff. Typically used for help desk deploymnets that allow staff to create tickets to action other staff members. + + **Default:** ``HELPDESK_SHOW_MY_TICKETS_IN_NAV_FOR_STAFF = True`` - **HELPDESK_TRANSLATE_TICKET_COMMENTS** Show dropdown list of languages that ticket comments can be translated into via Google Translate?