Skip to content

Instantly share code, notes, and snippets.

@ilyes-d
Created June 3, 2022 23:49
Show Gist options
  • Save ilyes-d/ffcc4903d7878f1fafaa63d5edcc9790 to your computer and use it in GitHub Desktop.
Save ilyes-d/ffcc4903d7878f1fafaa63d5edcc9790 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('accounts.urls')), # New
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment