Links news into project.

dev
Calum Andrew Morrell 2025-11-09 21:43:30 +00:00
parent 7538220e9a
commit 63bf8211a6
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ INSTALLED_APPS = [
"django.contrib.staticfiles",
"core",
"dashboard",
"news",
"markdownx",
]

View File

@ -23,5 +23,6 @@ urlpatterns = [
path("", include("core.urls", namespace="core")),
path("accounts/", include("accounts.urls")),
path("dashboard/", include("dashboard.urls", namespace="dashboard")),
path("news/", include("news.urls", namespace="news")),
path("markdownx/", include("markdownx.urls")),
]