ShariX interface for sending tickets for connection, obtaining roles
Общий интерфейс ShariX для отправки заявок на подключение, получение ролей
TonyKurts 1e2c0f9970 Added "Create service" page | hai 1 ano | |
---|---|---|
forms | hai 1 ano | |
templates | hai 1 ano | |
views | hai 1 ano | |
.gitignore | hai 1 ano | |
README.md | hai 1 ano | |
__init__.py | hai 1 ano | |
admin.py | hai 1 ano | |
apps.py | hai 1 ano | |
models.py | hai 1 ano | |
requirements.txt | hai 1 ano | |
tests.py | hai 1 ano | |
urls.py | hai 1 ano |
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.
# core/settings.py
INSTALLED_APPS = [
# ...
'platformrunning.apps.PlatformrunningConfig',
# ...
]
# core/urls.py
urlpatterns = [
# ...
path('platformrunning/', include('platformrunning.urls', namespace='platformrunning'), name='platformrunning')
# ...
]