Ticketing system implemented as a Django application.
Система заявок, реализованная в виде Django приложения.
|
|
8 months ago | |
|---|---|---|
| api | 8 months ago | |
| forms | 11 months ago | |
| lib | 10 months ago | |
| models | 8 months ago | |
| static | 2 years ago | |
| templates | 10 months ago | |
| views | 10 months ago | |
| .gitattributes | 2 years ago | |
| .gitignore | 2 years ago | |
| README.md | 2 years ago | |
| admin.py | 10 months ago | |
| apps.py | 11 months ago | |
| license-eng.md | 2 years ago | |
| license-ru.md | 2 years ago | |
| requirements.txt | 2 years ago | |
| urls.py | 8 months ago | |
| utils.py | 11 months 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'),
# ...
]