ShariX interface for sending tickets for connection, obtaining roles

Общий интерфейс ShariX для отправки заявок на подключение, получение ролей

Панюкова Александра Анатольевна 7fb6ff5017 Merge branch 'unstable' of blezz-tech/sharix-platform-running into unstable 1 tháng trước cách đây
forms 1e2c0f9970 Added "Create service" page 2 năm trước cách đây
handlers b1eea22185 add access request pending handler 1 tháng trước cách đây
lib eac0b56d6c fix length 1 tháng trước cách đây
templates 1e2c0f9970 Added "Create service" page 2 năm trước cách đây
views 1e2c0f9970 Added "Create service" page 2 năm trước cách đây
.gitignore 0c61dadfd7 Repository initialized 2 năm trước cách đây
README.md 6fe3ec7d73 Created initial files and application directories 2 năm trước cách đây
__init__.py 6fe3ec7d73 Created initial files and application directories 2 năm trước cách đây
admin.py 6fe3ec7d73 Created initial files and application directories 2 năm trước cách đây
apps.py cd429e3fff changing name to platform_running 3 tháng trước cách đây
models.py 6fe3ec7d73 Created initial files and application directories 2 năm trước cách đây
requirements.txt 0c61dadfd7 Repository initialized 2 năm trước cách đây
tests.py 6fe3ec7d73 Created initial files and application directories 2 năm trước cách đây
urls.py cd429e3fff changing name to platform_running 3 tháng trước cách đây

README.md

ShariX Platform Running

User web-interface for ShariX services. It implies interaction with the list of services, payment, establishment of relationships, interaction with technical support, etc. that is beyond default scenario.

Application definition

# core/settings.py
INSTALLED_APPS = [
    # ...
    'platformrunning.apps.PlatformrunningConfig',
    # ...
]
# core/urls.py
urlpatterns = [
    # ...
    path('platformrunning/', include('platformrunning.urls', namespace='platformrunning'), name='platformrunning')
    # ...
]