Skip to content
Snippets Groups Projects
Commit 497e657a authored by Andreas Fischer's avatar Andreas Fischer
Browse files

Properly linked the tutorial

parent c6235d2f
No related branches found
No related tags found
No related merge requests found
......@@ -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.site.urls),
path('', include('university.urls')),
path('admin/', admin.site.urls),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment