X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/bba5754a7f6971f4eedd2d4faa74e7ad89de8586..cb6f2f10ddd3e2410f6c9cc3536ec83dd50c862d:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 6106b9f..2aaf73d 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -22,13 +22,13 @@ urlpatterns = patterns('', # Uncomment this for admin: (r'^$', 'bpcms.views.document_view', {'slug': 'index'}), (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), - (r'^admin/(.*)$', admin.site.root), + (r'^admin/', include(admin.site.urls)), (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'^feeds/rss/blog/', LatestBlogEntriesRss()), + (r'^feeds/blog/', LatestBlogEntries()), (r'^comments/', include('django.contrib.comments.urls')), (r'^(?:content/|)', include('bpcms.urls')) )