Skip to content

Instantly share code, notes, and snippets.

@odhiambo123
Created October 28, 2023 17:56
Show Gist options
  • Save odhiambo123/9b5213d360641f775cbb1b05a79df3a4 to your computer and use it in GitHub Desktop.
Save odhiambo123/9b5213d360641f775cbb1b05a79df3a4 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path("", include("pages.urls")),
path("projects/", include("projects.urls")),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment