dr.botzo/races/urls.py
Brian S. Stephan 54b6da689d Races: really basic races site with a detail page
getting this out there so that i maybe feel motivated to make it not
suck in the future
2014-03-20 19:21:56 -05:00

9 lines
248 B
Python

from django.conf.urls import patterns, url
urlpatterns = patterns('races.views',
url(r'^$', 'index', name='races_index'),
url(r'^race/(?P<race_id>[A-Za-z0-9]+)/$', 'race_detail', name='race_detail'),
)
# vi:tabstop=4:expandtab:autoindent