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
350 B

# -*- coding: utf-8 -*-
from django.conf.urls import patterns, include, url
from .views import index, category_list, thanks
urlpatterns = patterns('',
url(r'^$', index, name='guestbook-index'),
url(r'^thanks/$', thanks, name='guestbook-thanks'),
url(r'^(?P<slug>[0-9A-Za-z-_.]+)/$', category_list, name='guestbook-category-list'),
)