annotate smiley/urls.py @ 953:8647a669edb4

Fix excessive cache usage for forum date/times. Issue #84. Hitting the cache 30+ times while browsing the forums to adjust all the dates/times into the user's time zone. Just hit the user's profile and be done with it. It should be loaded.
author Brian Neal <bgneal@gmail.com>
date Tue, 19 May 2015 21:08:45 -0500
parents ee87ea74d46b
children 5ba2508939f7
rev   line source
bgneal@12 1 """
bgneal@12 2 Urls for the Smiley application.
bgneal@12 3 """
bgneal@12 4
bgneal@574 5 from django.conf.urls import patterns, url
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 )