Commit eaf01201 authored by adam.fisher1's avatar adam.fisher1

Update urls.py

parent f1051a73
Pipeline #711 canceled with stages
......@@ -16,10 +16,8 @@ Including another URLconf
"""
# django_project/urls.py
from django.contrib import admin
from django.urls import path, include # new
from django.urls import path, include
urlpatterns = [
path("admin/", admin.site.urls),
path("", include("pages.urls")), # new
path('', include('pages.urls')), # Include the 'pages' app's URLs
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment