Ticketing system implemented as a Django application.

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

TonyKurts 1608363569 The superuser in the web interface now has the same permissions as other users пре 2 недеља
api 9f553ce260 Tickets API v1.2 пре 6 месеци
forms 1608363569 The superuser in the web interface now has the same permissions as other users пре 2 недеља
models 9f553ce260 Tickets API v1.2 пре 6 месеци
static 1b2c3e1c67 ShariX Open Tickets v1.0 пре 1 година
templates 1608363569 The superuser in the web interface now has the same permissions as other users пре 2 недеља
views 1608363569 The superuser in the web interface now has the same permissions as other users пре 2 недеља
.gitattributes 5b40d1c1f9 Minor fixies пре 1 година
.gitignore 5b40d1c1f9 Minor fixies пре 1 година
README.md c0b24002c5 Tickets API v1.1 пре 1 година
admin.py 9f553ce260 Tickets API v1.2 пре 6 месеци
apps.py e0440ee7a6 Automatic creation of lists with tickets moved to the sharix-open repository пре 1 месец
license-eng.md 1b2c3e1c67 ShariX Open Tickets v1.0 пре 1 година
license-ru.md 1b2c3e1c67 ShariX Open Tickets v1.0 пре 1 година
requirements.txt 1b2c3e1c67 ShariX Open Tickets v1.0 пре 1 година
urls.py 5b40d1c1f9 Minor fixies пре 1 година
utils.py 1608363569 The superuser in the web interface now has the same permissions as other users пре 2 недеља

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