Ticketing system implemented as a Django application.

Система заявок, реализованная в виде Django приложения.

Панюкова Александра Анатольевна eff04f92be Merge branch 'unstable' of ShariX_Open/sharix-open-tickets into master 20 時間 前
api 268deb29df add TODO 20 時間 前
forms 6c8d89e0e8 refactoring code using pycharm 3 ヶ月 前
lib 2c1b6730a2 fix comman error 2 ヶ月 前
models b08ed48747 ticket title max_length=256 2 週間 前
static 1b2c3e1c67 ShariX Open Tickets v1.0 1 年間 前
templates 56fcbece49 move modal window 2 ヶ月 前
views 8046d1a1c1 events processing fixed 2 ヶ月 前
.gitattributes 5b40d1c1f9 Minor fixies 1 年間 前
.gitignore 5b40d1c1f9 Minor fixies 1 年間 前
README.md c0b24002c5 Tickets API v1.1 1 年間 前
admin.py 8046d1a1c1 events processing fixed 2 ヶ月 前
apps.py 6c8d89e0e8 refactoring code using pycharm 3 ヶ月 前
license-eng.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 年間 前
license-ru.md 1b2c3e1c67 ShariX Open Tickets v1.0 1 年間 前
requirements.txt 1b2c3e1c67 ShariX Open Tickets v1.0 1 年間 前
urls.py f6a9316b4d add assigin_someone_user in APIv2 2 週間 前
utils.py 6c8d89e0e8 refactoring code using pycharm 3 ヶ月 前

README.md

ShariX Open Tickets

Ticketing system implemented as a Django application.

Installation

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'),
    # ...
]