"""URL patterns for the karma views.""" from django.conf.urls import patterns, url from karma.views import key_detail, index urlpatterns = patterns('races.views', url(r'^$', index, name='karma_index'), url(r'^key/(?P.+)/', key_detail, name='karma_key_detail'), )