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