diff --git a/SciPost_v1/settings/base.py b/SciPost_v1/settings/base.py index ec132d3dd4453c2710cf181d9fbda302e98005c3..6bbf98dffecc06f1664e6a5ee1cc0fcfc0ccc8be 100644 --- a/SciPost_v1/settings/base.py +++ b/SciPost_v1/settings/base.py @@ -86,9 +86,11 @@ INSTALLED_APPS = ( 'commentaries', 'comments', 'journals', + 'news', 'scipost', 'submissions', 'theses', + 'virtualmeetings', 'webpack_loader' ) diff --git a/SciPost_v1/urls.py b/SciPost_v1/urls.py index 9b85d34e8e3967fdfc82a646d9d8c76443eb3c9a..9391da29315f2d285bc84dc132c7e7dafa617cb8 100644 --- a/SciPost_v1/urls.py +++ b/SciPost_v1/urls.py @@ -31,5 +31,5 @@ urlpatterns = [ url(r'^submission/', include('submissions.urls', namespace="submissions")), url(r'^theses/', include('theses.urls', namespace="theses")), url(r'^thesis/', include('theses.urls', namespace="theses")), - # url(r'^captcha/', include('captcha.urls')), + url(r'^news/', include('news.urls', namespace="news")), ]