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 | пре 6 месеци | |
forms | пре 2 недеља | |
models | пре 6 месеци | |
static | пре 1 година | |
templates | пре 2 недеља | |
views | пре 2 недеља | |
.gitattributes | пре 1 година | |
.gitignore | пре 1 година | |
README.md | пре 1 година | |
admin.py | пре 6 месеци | |
apps.py | пре 1 месец | |
license-eng.md | пре 1 година | |
license-ru.md | пре 1 година | |
requirements.txt | пре 1 година | |
urls.py | пре 1 година | |
utils.py | пре 2 недеља |
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'),
# ...
]