##// END OF EJS Templates
Updated the Snow White theme. Scroll to the new post after posting to thread.
Updated the Snow White theme. Scroll to the new post after posting to thread.

File last commit:

r35:4962ee48 default
r41:68192446 default
Show More
urls.py
20 lines | 556 B | text/x-python | PythonLexer
from django.conf.urls import patterns, url
from boards import views
urlpatterns = patterns('',
# /boards/
url(r'^$', views.index, name = 'index'),
# login page
url(r'^login$', views.login, name='login'),
# logout page
url(r'^logout$', views.logout, name='logout'),
# /boards/tag/
url(r'^tag/(?P<tag_name>\w+)/$', views.tag, name='tag'),
# /boards/post_id/
url(r'^thread/(?P<post_id>\w+)/$', views.thread, name='thread'),
# /boards/theme/theme_name/
url(r'^settings$', views.settings, name='settings'),
)