ShariX interface for sending tickets for connection, obtaining roles

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

ShariX Developer 9df5a85d0c fix generate api key for handlers il y a 2 mois
forms 1e2c0f9970 Added "Create service" page il y a 2 ans
handlers 8c27d9c042 add config.env file il y a 2 mois
lib 9df5a85d0c fix generate api key for handlers il y a 2 mois
templates 1e2c0f9970 Added "Create service" page il y a 2 ans
views 1e2c0f9970 Added "Create service" page il y a 2 ans
.gitignore 0c61dadfd7 Repository initialized il y a 2 ans
README.md 6fe3ec7d73 Created initial files and application directories il y a 2 ans
__init__.py 6fe3ec7d73 Created initial files and application directories il y a 2 ans
admin.py 6fe3ec7d73 Created initial files and application directories il y a 2 ans
apps.py cd429e3fff changing name to platform_running il y a 5 mois
models.py 6fe3ec7d73 Created initial files and application directories il y a 2 ans
requirements.txt 0c61dadfd7 Repository initialized il y a 2 ans
tests.py 6fe3ec7d73 Created initial files and application directories il y a 2 ans
urls.py cd429e3fff changing name to platform_running il y a 5 mois

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