X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/1487722766c9e649c95a6f25ae29b0680bdc1be0..f2dedecf621902515d68eb84dfd2c8da036c578b:/sommitrealweird/urls.py?ds=sidebyside diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 6eb6f42..6106b9f 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -24,7 +24,11 @@ urlpatterns = patterns('', (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), (r'^admin/(.*)$', admin.site.root), (r'^blog/', include('blog.urls')), + (r'^photo/', include('photo.urls')), + (r'^photos/', include('photo.urls')), + (r'^css-doc/(?P.*)$', 'bpcms.views.css_view'), (r'^feeds/rss/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': rssfeeds_dict}), (r'^feeds/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': feeds_dict}), + (r'^comments/', include('django.contrib.comments.urls')), (r'^(?:content/|)', include('bpcms.urls')) )