A Django application to manage tickets for an internal helpdesk. Formerly known as Jutda Helpdesk.
Go to file
2022-07-17 03:33:01 -04:00
.github/ISSUE_TEMPLATE Add issue templates 2019-03-15 16:21:29 -04:00
.tx update Transifex config file 2014-07-30 09:52:14 +02:00
demo Merge branch 'stable' into unstable 2022-07-17 03:33:01 -04:00
docs Formatting fixes 2022-07-14 09:19:11 +02:00
helpdesk Formatting fixes 2022-07-14 09:19:11 +02:00
.coveragerc removing leftover references to south_migrations folder 2016-11-02 17:24:05 +01:00
.flake8 chore(pep8): Fix bad imports, unused variables, pep8 warnings and some possible bugs 2021-03-05 09:37:21 +01:00
.gitignore Update the model name in the fixtures. 2020-01-13 20:54:47 +01:00
.pylintrc removing leftover references to south_migrations folder 2016-11-02 17:24:05 +01:00
.travis.yml Test against Django 3.2 2021-05-16 03:25:14 -04:00
AUTHORS replace non-existent UPGRADE with updated AUTHORS in MANIFEST.in 2016-10-27 15:08:48 +07:00
azure-pipelines.yml Do testing with Django 4 and Python 3.10 2022-07-02 06:27:13 -04:00
build_project.sh Update project URLs per #424 2016-10-12 11:14:10 +11:00
constraints-Django4.txt Rename constraints-Django4 to constraints-Django4.txt 2022-07-02 06:33:56 -04:00
constraints-Django32.txt Update azure pipelines config to test all versions of django supported 2021-10-17 23:34:23 -04:00
CONTRIBUTING.rst Update CONTRIBUTING for the new branch naming scheme 2021-11-21 23:36:17 -05:00
LICENSE Set end date for official 0.2 support, update license copyright years 2021-10-18 00:57:31 -04:00
LICENSE.3RDPARTY timeline 3 license 2020-11-16 07:13:56 -07:00
Makefile Add attachment validator when uploading attachment to tickets 2021-10-05 06:25:42 -04:00
MANIFEST.in Update documentation for 0.3.0 release, restrict support to python 3.8+ because earlier pythons are no longer supported upstream anyway 2021-10-17 23:49:16 -04:00
quicktest.py Formatting fixes 2022-07-14 09:19:11 +02:00
README.rst Bump to version 0.4.1 2022-07-02 06:40:35 -04:00
requirements-no-pinax.txt Fix some docs and migrations in prep for 0.3 release, see #878 2021-08-20 02:05:21 -04:00
requirements-testing.txt Create two new tests for ticket followups and followup attachments + adapt one test (needed to use freezegun) 2022-06-30 23:43:22 +02:00
requirements.txt Some requirements fixes 2022-03-16 19:25:29 -04:00
SECURITY.md Set end date for official 0.2 support, update license copyright years 2021-10-18 00:57:31 -04:00
setup.py Merge branch 'stable' into unstable 2022-07-17 03:33:01 -04:00

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

[![Build Status](https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master)](https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master)

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

Copyright 2009-2022 Ross Poulton and django-helpdesk 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 https://django-helpdesk-demo.herokuapp.com/,
or run a demo locally in just a couple steps!

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::

    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.

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:

* Python 3.8+
* Django 3.2 LTS highly recommended (early adopters may test Django 4)

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`

Testing
-------

See `quicktest.py` for usage details.

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)
* language translations
* writing improved documentation and demos

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


Licensing
---------

django-helpdesk is licensed under terms of the BSD 3-clause license.
See the `LICENSE` file 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.

.. _note: http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching