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