Ticketing system implemented as a Django application.

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

TonyKurts e0440ee7a6 Automatic creation of lists with tickets moved to the sharix-open repository 1 mesiac pred
api 9f553ce260 Tickets API v1.2 6 mesiacov pred
forms 70246bd038 Ticket model now has a separate field for JSON storage 6 mesiacov pred
models 9f553ce260 Tickets API v1.2 6 mesiacov pred
static 1b2c3e1c67 ShariX Open Tickets v1.0 1 rok pred
templates a4d86ccd95 Removed the ability to sort tasks by type 6 mesiacov pred
views a4d86ccd95 Removed the ability to sort tasks by type 6 mesiacov pred
.gitattributes 5b40d1c1f9 Minor fixies 1 rok pred
.gitignore 5b40d1c1f9 Minor fixies 1 rok pred
README.md c0b24002c5 Tickets API v1.1 1 rok pred
admin.py 9f553ce260 Tickets API v1.2 6 mesiacov pred
apps.py e0440ee7a6 Automatic creation of lists with tickets moved to the sharix-open repository 1 mesiac pred
license-eng.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 rok pred
license-ru.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 rok pred
requirements.txt 1b2c3e1c67 ShariX Open Tickets v1.0 1 rok pred
urls.py 5b40d1c1f9 Minor fixies 1 rok pred
utils.py 593dff465d Tickets API v1 release 1 rok pred

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'),
    # ...
]