Linked articles app and markdownx into project urls.

pull/1/head
Calum Andrew Morrell 2025-02-16 22:49:48 +00:00
parent c397468cc3
commit 835de18952
1 changed files with 3 additions and 1 deletions

View File

@ -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')),
]