Ticketing system implemented as a Django application.

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

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

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