A Django application to manage tickets for an internal helpdesk. Formerly known as Jutda Helpdesk.
Go to file
2017-07-16 19:24:16 -04:00
.tx update Transifex config file 2014-07-30 09:52:14 +02:00
demo Demo requires markdown_deux for KnowledgeBase to work properly 2017-04-03 01:52:35 -04:00
docs #184: provide more explicit install documentation for using MySQL with UTF-8 collation 2017-04-16 03:31:45 -04:00
helpdesk Show ticket ID in title of page so easier to use with many tabs open, to address #525 2017-07-16 19:24:16 -04:00
.coveragerc removing leftover references to south_migrations folder 2016-11-02 17:24:05 +01:00
.gitignore Rework README and CONTRIBUTING to remove redundancy. Some README statements moved to install docs instead. 2017-03-20 03:19:53 -04:00
.pylintrc removing leftover references to south_migrations folder 2016-11-02 17:24:05 +01:00
.travis.yml Add Django 1.11 to testing on Travis CI 2017-04-16 04:21:05 -04:00
AUTHORS replace non-existent UPGRADE with updated AUTHORS in MANIFEST.in 2016-10-27 15:08:48 +07:00
build_project.sh Update project URLs per #424 2016-10-12 11:14:10 +11:00
CONTRIBUTING.rst Rework README and CONTRIBUTING to remove redundancy. Some README statements moved to install docs instead. 2017-03-20 03:19:53 -04:00
LICENSE Remove last line of LICENSE to see if GitHub will detect it automatically and display it site; updated README and docs/license.rst to more clearly spell out license and 3rd-party licenses 2017-03-20 03:17:26 -04:00
LICENSE.3RDPARTY Finish CSS template changes for Ticket page and related properties; includes responsive Ticket list table; styled file input buttons but need to find way to update text for beyond the first input box; added a ticket_attachment_del page to confirm removal of attachment and styled it 2016-09-12 02:11:55 -04:00
Makefile Update comments for consistency with their targets 2017-04-06 07:59:17 +07:00
MANIFEST.in replace non-existent UPGRADE with updated AUTHORS in MANIFEST.in 2016-10-27 15:08:48 +07:00
quicktest.py drop quicktest compatibility for unsupported django versions 2016-11-21 09:31:40 +07:00
README.rst Rework README and CONTRIBUTING to remove redundancy. Some README statements moved to install docs instead. 2017-03-20 03:19:53 -04:00
requirements-testing.txt Add missing testing dependencies for python 2 (mock and pbr) 2017-06-14 19:21:44 -04:00
requirements.txt merge changes from updated master 2016-10-29 13:35:03 +07:00
setup.py Add Django 1.11 to the setup.py classifiers list 2017-06-14 19:18:10 -04:00

django-helpdesk - A Django powered ticket tracker for small businesses.
=======================================================================

.. image:: https://travis-ci.org/django-helpdesk/django-helpdesk.png?branch=master
    :target: https://travis-ci.org/django-helpdesk/django-helpdesk

.. image:: https://codecov.io/gh/django-helpdesk/django-helpdesk/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/django-helpdesk/django-helpdesk

Copyright 2009- Ross Poulton and contributors. All Rights Reserved.
See LICENSE for details.

django-helpdesk was formerly known as Jutda Helpdesk, named after the
company which originally created it. As of January 2011 the name has been
changed to reflect what it really is: a Django-powered ticket tracker with
contributors reaching far beyond Jutda.

Complete documentation is available in the docs/ directory,
or online at http://django-helpdesk.readthedocs.org/.

You can see a demo installation at http://django-helpdesk-demo.herokuapp.com/,
or run a demo locally in just a couple steps!

Licensing
---------

django-helpdesk is licensed under terms of the BSD 3-clause license.
See the file 'LICENSE' for full licensing terms.

Note that django-helpdesk is distributed with 3rd party products which
have their own licenses. See LICENSE.3RDPARTY for license terms for
included packages.

Demo Quickstart
---------------

django-helpdesk includes a basic demo Django project so that you may easily
get started with testing or developing django-helpdesk. The demo project
resides in the demo/ top-level folder.

It's likely that you can start up a demo project server by running
only the command:

    sudo make rundemo

then pointing your web browser at localhost:8080.

For more information and options, please read the demo/README.rst file.

**NOTE REGARDING SQLITE AND SEARCHING:**
The demo project uses sqlite as its database. Sqlite does not allow
case-insensitive searches and so the search function may not work as
effectively as it would on other database such as PostgreSQL or MySQL
that does support case-insensitive searches.
For more information, see this note in the Django documentation:
http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching

When you try to do a keyword search using sqlite, a message will be displayed
to alert you to this shortcoming. There is no way around it, sorry.

Installation
------------

django-helpdesk requires either Python 2.7 or 3.4+, as well as Django 1.8+.
The recommended combination is Python 3.4+ with Django 1.10.

You can quickly install the latest stable version of django-helpdesk app via pip:

    pip install django-helpdesk

You may also check out the master branch on GitHub, and install manually:

    python setup.py install

Either way, you will need to add django-helpdesk to an existing Django project.

For further installation information see docs/install.html and docs/configuration.html

Upgrading from previous versions
--------------------------------

If you are upgrading from a previous version of django-helpdesk that used
migrations, get an up to date version of the code base (eg by using
`git pull` or `pip install --upgrade django-helpdesk`) then migrate the database::

    python manage.py migrate helpdesk --db-dry-run # DB untouched
    python manage.py migrate helpdesk

Lastly, restart your web server software (eg Apache) or FastCGI instance, to
ensure the latest changes are in use.

Unfortunately we are unable to assist if you are upgrading from a
version of django-helpdesk prior to migrations (ie pre-2011).

You can continue to the 'Initial Configuration' area, if needed.

Contributing
------------

We're happy to include any type of contribution! This can be back-end
python/django code development, front-end web development
(HTML/Javascript, especially jQuery), or even language translations.

For more information on contributing, please see the CONTRIBUTING.rst file.