InstallationΒΆ
pip install coltrane
(or use whatever Python package manager you like)Add
coltrane
to the list ofINSTALLED_APPS
in Django settings fileAdd
path("", include("coltrane.urls")),
to the bottom of theurlpatterns
in the rooturls.py
(i.e. theurls.py
specified byROOT_URLCONF
)
# urls.py
from django.urls import include, path
urlpatterns = [
...
path("", include("coltrane.urls")),
]