dr.botzo/web/karma/urls.py
Brian S. Stephan 2f5bdf5d1f Web (Karma): add detail page to see the deltas of one key
this could be a graph, eventually, with more time to hack through
something like YUI.
http://developer.yahoo.com/yui/examples/charts/charts-styles_clean.html
is a solid example
2011-02-20 17:08:17 -06:00

9 lines
228 B
Python
Executable File

from django.conf.urls.defaults import *
urlpatterns = patterns('karma.views',
(r'^$', 'index'),
(r'^givers/$', 'givers'),
(r'^stats/$', 'stats'),
(r'^stats/(?P<key>.*)/$', 'key_detail', dict(), 'key_detail'),
)