Mercurial > public > sg101
annotate gpp/smiley/urls.py @ 327:a1bf6cf49720
Modified the implementation of the avatar tag to look for an attribute 'user_profile' on the user object. If present, this is assumed to be the profile. This improves the performance of the member list and some forum views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 22 Feb 2011 02:11:26 +0000 |
parents | 3ae999b0c53b |
children | ddd69a8e07c7 |
rev | line source |
---|---|
bgneal@12 | 1 """ |
bgneal@12 | 2 Urls for the Smiley application. |
bgneal@12 | 3 """ |
bgneal@12 | 4 |
bgneal@12 | 5 from django.conf.urls.defaults import * |
bgneal@12 | 6 |
bgneal@12 | 7 urlpatterns = patterns('smiley.views', |
bgneal@12 | 8 url(r'^farm/$', 'farm', name='smiley-farm'), |
bgneal@123 | 9 url(r'^farm/extra/$', 'farm', kwargs={'extra': True}, name='smiley-farm_extra'), |
bgneal@12 | 10 ) |