Ticketing system implemented as a Django application.
Система заявок, реализованная в виде Django приложения.
TonyKurts 1608363569 The superuser in the web interface now has the same permissions as other users | hace 2 semanas | |
---|---|---|
api | hace 6 meses | |
forms | hace 2 semanas | |
models | hace 6 meses | |
static | hace 1 año | |
templates | hace 2 semanas | |
views | hace 2 semanas | |
.gitattributes | hace 1 año | |
.gitignore | hace 1 año | |
README.md | hace 1 año | |
admin.py | hace 6 meses | |
apps.py | hace 1 mes | |
license-eng.md | hace 1 año | |
license-ru.md | hace 1 año | |
requirements.txt | hace 1 año | |
urls.py | hace 1 año | |
utils.py | hace 2 semanas |
Ticketing system implemented as a Django application.
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'),
# ...
]