Brian S. Stephan 6fad9202ca add karma graphs view to the django site
pretty simplistic for the moment, it will become more robust later (TM)
2016-03-30 17:08:01 -05:00

12 lines
367 B
Python

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