Polish doc for creating help entry. Resolve #2176.

This commit is contained in:
Griatch 2022-01-19 23:26:55 +01:00
parent d00ed3f82a
commit d6fbd1572f
2 changed files with 34 additions and 13 deletions

View file

@ -23,7 +23,10 @@ urlpatterns = [
# webclient
path("webclient/", include("web.webclient.urls")),
# web admin
path("admin/", include("web.admin.urls"))
path("admin/", include("web.admin.urls")),
# add any extra urls here:
# path("mypath/", include("path.to.my.urls.file")),
]
# 'urlpatterns' must be named such for Django to find it.