ShariX interface for sending tickets for connection, obtaining roles

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

ShariX Developer 1b6994bdb7 test rm 2 周之前
forms 1e2c0f9970 Added "Create service" page 1 年之前
templates 1e2c0f9970 Added "Create service" page 1 年之前
views 1e2c0f9970 Added "Create service" page 1 年之前
.gitignore 0c61dadfd7 Repository initialized 1 年之前
README.md 6fe3ec7d73 Created initial files and application directories 1 年之前
__init__.py 6fe3ec7d73 Created initial files and application directories 1 年之前
admin.py 6fe3ec7d73 Created initial files and application directories 1 年之前
apps.py cd429e3fff changing name to platform_running 2 周之前
models.py 6fe3ec7d73 Created initial files and application directories 1 年之前
requirements.txt 0c61dadfd7 Repository initialized 1 年之前
tests.py 6fe3ec7d73 Created initial files and application directories 1 年之前
urls.py cd429e3fff changing name to platform_running 2 周之前

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