Mercurial > public > sg101
annotate gpp/smiley/urls.py @ 520:e94570675664
Created stats for users (number of users and list of newest users).
Better separated the forums, who's online, and user stats.
Use a Celery task to execute the new user stats processing.
This addresses #194 and #238.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 17 Dec 2011 23:19:15 +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 ) |