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