dr.botzo/dr_botzo/karma/urls.py

11 lines
285 B
Python

"""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<karma_key>.+)/', key_detail, name='karma_key_detail'),
)