Start adding views
[tickle] / core / urls.py
index f0559db..0d79c71 100644 (file)
@@ -14,8 +14,9 @@ Including another URLconf
     2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
 """
 from django.contrib import admin
-from django.urls import path
+from django.urls import include, path
 
 urlpatterns = [
     path('admin/', admin.site.urls),
+    path('climbing/', include('tickle.urls')),
 ]