PCv5/forum/urls.py

10 lines
360 B
Python
Raw Normal View History

2016-10-02 17:07:47 +02:00
from django.conf.urls import patterns, url
import forum.views as v
urlpatterns = [
url(r'^$', v.index), # Index
url(r'^(?P<id_forum>\d+)/$', v.forum), # List of topics
url(r'^(?P<id_forum>\d+)/(?P<id_topic>\d+)/$', v.topic), # See a topic
url(r'^(?P<id_forum>\d+)/(?P<id_topic>\d+)/(?P<page>\d+|(last))/$', v.topic), # See a page of a topic
]