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