changes to urls.py in the django views, trivial __init__ change for the irc library stuff bss/dr.botzo#16
11 lines
265 B
Python
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'),
|
|
]
|