Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
from django.urls import include, path
from . import urlconf_inner
urlpatterns = [
path("test/me/", urlconf_inner.inner_view, name="outer"),
path("inner_urlconf/", include(urlconf_inner.__name__)),
]