from django.conf.urls.defaults import * urlpatterns = patterns('karma.views', (r'^$', 'index'), (r'^givers/$', 'givers'), (r'^stats/$', 'stats'), )