django-helpdesk/docs/index.rst
ssboy 56d287cecd
line 74 ... - run syncdb + run migrate
i think syncdb is obsolete from 1.9 ... or not?
2018-02-10 09:43:26 +01:00

76 lines
2.6 KiB
ReStructuredText

Welcome to django-helpdesk's documentation!
===========================================
django-helpdesk is a Django application to manage helpdesk tickets for your internal helpdesk. It was formerly known as Jutda Helpdesk.
Contents
--------
.. toctree::
:maxdepth: 2
:glob:
install
configuration
settings
spam
custom_fields
contributing
license
How Does It Look?
-----------------
You can see a demo installation at http://django-helpdesk-demo.herokuapp.com/
Quick Start
-----------
django-helpdesk is just a Django application with models, views, templates, and some media. If you're comfortable with Django just try ``pip install django-helpdesk``. If not, continue to read the Installation document.
Key Features
------------
django-helpdesk has been designed for small businesses who need to receive, manage and respond to requests for help from customers. In this context *'customers'* may be external users, or other people within your company.
* Tickets can be opened via email
* Multiple queues / categories of tickets
* Integrated FAQ / knowledgebase
Customer-facing Capabilities
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Customers (who are not 'staff' users in Django) can:
1. Browse your knowledgebase / FAQ
2. Submit support requests via web/email
3. Review open and closed requests they submitted
Staff Capabilities
~~~~~~~~~~~~~~~~~~
If a user is a staff member, they get general helpdesk access, including:
1. See the ticket dashboard showing unassigned tickets and basic status of the helpdesk
2. Review the tickets assigned to them
3. Search through all tickets, open and closed
4. Save their searches for future use
5. Follow up or respond to tickets
6. Assign tickets to themselves or other staff members
7. Resolve tickets
Optionally, their access to view tickets, both on the dashboard and through searches and reports, may be restricted by a list of queues to which they have been granted membership. Create and update permissions for individual tickets are not limited by this optional restriction.
Licensing
---------
django-helpdesk is released under the BSD license, however it packages 3rd party applications which may be using a different license. More details can be found in the :doc:`license` documentation.
Dependencies
------------
1. Python 3.4+ (or 2.7, but deprecated and support will be removed next release)
2. Django 1.11 or newer
3. An existing **working** Django project with database etc. If you cannot log into the Admin, you won't get this product working! This means you **must** run `migrate` **before** you add ``helpdesk`` to your ``INSTALLED_APPS``.