Links news into project.
parent
7538220e9a
commit
63bf8211a6
|
|
@ -45,6 +45,7 @@ INSTALLED_APPS = [
|
|||
"django.contrib.staticfiles",
|
||||
"core",
|
||||
"dashboard",
|
||||
"news",
|
||||
"markdownx",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -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")),
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue