from django.conf.urls import patterns, url import forum.views as v urlpatterns = [ url(r'^$', v.index), # Index url(r'^(?P\d+)/$', v.forum), # List of topics url(r'^(?P\d+)/(?P\d+)/$', v.topic), # See a topic url(r'^(?P\d+)/(?P\d+)/(?P\d+|(last))/$', v.topic), # See a page of a topic ]