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