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
9 lines
228 B
Python
Executable File
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'),
|
|
)
|