ShariX interface for sending tickets for connection, obtaining roles

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

TonyKurts 1e2c0f9970 Added "Create service" page hace 1 año
forms 1e2c0f9970 Added "Create service" page hace 1 año
templates 1e2c0f9970 Added "Create service" page hace 1 año
views 1e2c0f9970 Added "Create service" page hace 1 año
.gitignore 0c61dadfd7 Repository initialized hace 1 año
README.md 6fe3ec7d73 Created initial files and application directories hace 1 año
__init__.py 6fe3ec7d73 Created initial files and application directories hace 1 año
admin.py 6fe3ec7d73 Created initial files and application directories hace 1 año
apps.py 1e2c0f9970 Added "Create service" page hace 1 año
models.py 6fe3ec7d73 Created initial files and application directories hace 1 año
requirements.txt 0c61dadfd7 Repository initialized hace 1 año
tests.py 6fe3ec7d73 Created initial files and application directories hace 1 año
urls.py 6fe3ec7d73 Created initial files and application directories hace 1 año

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