ShariX interface for sending tickets for connection, obtaining roles
Общий интерфейс ShariX для отправки заявок на подключение, получение ролей
TonyKurts 1e2c0f9970 Added "Create service" page | hace 1 año | |
---|---|---|
forms | hace 1 año | |
templates | hace 1 año | |
views | hace 1 año | |
.gitignore | hace 1 año | |
README.md | hace 1 año | |
__init__.py | hace 1 año | |
admin.py | hace 1 año | |
apps.py | hace 1 año | |
models.py | hace 1 año | |
requirements.txt | hace 1 año | |
tests.py | hace 1 año | |
urls.py | hace 1 año |
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')
# ...
]