You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
369 B
13 lines
369 B
# -*- coding: utf-8 -*- |
|
from __future__ import unicode_literals |
|
# Erik Stein <code@classlibrary.net>, 2017 |
|
|
|
from django.conf.urls import url |
|
|
|
from .views import PersonListView |
|
|
|
|
|
urlpatterns = [ |
|
url(r'^$', PersonListView.as_view(), name='person-list'), |
|
url(r'^(?P<letter>\w)/$', PersonListView.as_view(), name='person-list-letter'), |
|
]
|
|
|