dr.botzo/choices/urls.py
Brian S. Stephan 8f8af4e6b4 package updates and resulting compat stuff
changes to urls.py in the django views, trivial __init__ change for the
irc library stuff

bss/dr.botzo#16
2017-02-06 22:58:51 -06:00

11 lines
265 B
Python

"""URL patterns for choices."""
from django.conf.urls import url
from choices.views import index, choiceset_detail
urlpatterns = [
url(r'^$', index, name='choices_index'),
url(r'^(?P<set_name>.+)/$', choiceset_detail, name='choices_choiceset_detail'),
]