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