From 835de189528d8766fda925f437f95cfe74dbf7c9 Mon Sep 17 00:00:00 2001 From: Calum Andrew Morrell Date: Sun, 16 Feb 2025 22:49:48 +0000 Subject: [PATCH] Linked articles app and markdownx into project urls. --- config/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/urls.py b/config/urls.py index 10a0e72..9f79c2d 100644 --- a/config/urls.py +++ b/config/urls.py @@ -15,8 +15,10 @@ 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 path, include urlpatterns = [ path('admin/', admin.site.urls), + path('articles/', include('articles.urls', namespace='articles')), + path('markdownx/', include('markdownx.urls')), ]