PCv5/forum/urls.py

11 lines
351 B
Python
Raw Normal View History

from django.conf.urls import url
2016-10-02 17:07:47 +02:00
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
]