diff options
author | luxagraf <sng@luxagraf.net> | 2016-10-10 07:54:02 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-10-10 07:54:02 -0400 |
commit | 3982aeb761dabbf7ec84e51813bf9b07531d332a (patch) | |
tree | c4d3f27a5440866ff7b0b95d9a127afff471e9ab /config | |
parent | 1c656d42f8f00b7202621c1aa392d718dcc6c7cd (diff) |
rolled in some live changes
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 9cc2186..0f63a75 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -65,6 +65,7 @@ urlpatterns += [ ), # facebook ia feed url(r'^iafeed.xml$', FacebookFeedView.as_view()), + url(r'^comments/', include('django_comments.urls')), # pages url(r'^(?P<slug>[-\w]+)/?$', PageDetailView.as_view()), url(r'^(?P<path>[-\w]+)/(?P<slug>[-\w]+)?$', PageDetailView.as_view()), @@ -77,6 +78,3 @@ urlpatterns += [ {'document_root': settings.STATIC_ROOT, } ), ] -urlpatterns += [ - url(r'^comments/', include('django_comments.urls')), -] |