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 weeks ago | |
---|---|---|
api | 6 months ago | |
forms | 2 weeks ago | |
models | 6 months ago | |
static | 1 year ago | |
templates | 2 weeks ago | |
views | 2 weeks ago | |
.gitattributes | 1 year ago | |
.gitignore | 1 year ago | |
README.md | 1 year ago | |
admin.py | 6 months ago | |
apps.py | 1 month ago | |
license-eng.md | 1 year ago | |
license-ru.md | 1 year ago | |
requirements.txt | 1 year ago | |
urls.py | 1 year ago | |
utils.py | 2 weeks ago |
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'),
# ...
]