Mercurial > public > sg101
view news/urls.py @ 791:0ca691cccf8d
Utilize select_related() for user & user profiles.
This commit also removes the caching of the avatar URL in the
avatar template tag. This is because we are now using select_related,
so we already have the profile & avatar when we get to the tag.
Thus we don't need to waste time querying the cache.
Removed an apparently unused member map template as well.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 May 2014 21:52:41 -0500 |
parents | ee87ea74d46b |
children | e2c3d7ecfa30 |
line wrap: on
line source
"""urls for the News application""" from django.conf.urls import patterns, url urlpatterns = patterns('news.views', url(r'^date/$', 'index', name='news-index_page'), url(r'^archive/$', 'archive_index', name='news-archive_index'), url(r'^archive/(?P<year>\d{4})/(?P<month>\d\d?)/$', 'archive', name='news-archive_page'), url(r'^categories/$', 'category_index', name='news-category_index'), url(r'^category/(?P<slug>[\w\d-]+)/$', 'category', name='news-category'), url(r'^email/(\d+)/$', 'email_story', name='news-email_story'), url(r'^email/thanks/$', 'email_thanks', name='news-email_thanks'), url(r'^story/(\d+)/$', 'story', name='news-story'), url(r'^submit/$', 'submit', name='news-submit'), url(r'^submit/thanks/$', 'submit_thanks', name='news-submit_thanks'), url(r'^tags/$', 'tags', name='news-tag_index'), url(r'^tag/(?P<tag_name>[^/]+)/$', 'tag', name='news-tag_page'), )