Ticketing system implemented as a Django application.

Система заявок, реализованная в виде Django приложения.

TonyKurts ed9b3d31e5 Fixed a bug preventing comments model from working in the admin panel 6 hónapja
api 70246bd038 Ticket model now has a separate field for JSON storage 6 hónapja
forms 70246bd038 Ticket model now has a separate field for JSON storage 6 hónapja
models ed9b3d31e5 Fixed a bug preventing comments model from working in the admin panel 6 hónapja
static 1b2c3e1c67 ShariX Open Tickets v1.0 1 éve
templates a4d86ccd95 Removed the ability to sort tasks by type 6 hónapja
views a4d86ccd95 Removed the ability to sort tasks by type 6 hónapja
.gitattributes 5b40d1c1f9 Minor fixies 1 éve
.gitignore 5b40d1c1f9 Minor fixies 1 éve
README.md c0b24002c5 Tickets API v1.1 1 éve
admin.py 5b40d1c1f9 Minor fixies 1 éve
apps.py a165a7c278 Added creation of default lists during application initialization 1 éve
license-eng.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 éve
license-ru.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 éve
requirements.txt 1b2c3e1c67 ShariX Open Tickets v1.0 1 éve
signals.py 4bbf282242 Fixed indexes of automatically created lists, in accordance with changes on the platform 7 hónapja
urls.py 5b40d1c1f9 Minor fixies 1 éve
utils.py 593dff465d Tickets API v1 release 1 éve

README.md

ShariX Open Tickets

Ticketing system implemented as a Django application.

Installation

Download or clone repository in core project:

git clone -b master http://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git tickets

Install required libraries from tickets/requirements.txt (don't forget to create and activate virtual environment):

pip install -r tickets/requirements.txt

Set required apps in core/settings.py:

# core/settings.py

INSTALLED_APPS = [
    # ...
    'django.contrib.sites',
    'tickets.apps.TicketsConfig',
    # ...
]

Include ShariX Open Tickets URLs in core/urls.py:

# core/urls.py

urlpatterns = [
    # ...
    path('tickets/', include('tickets.urls', namespace='tickets'), name='tickets'),
    # ...
]