##// END OF EJS Templates
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.

File last commit:

r35:4962ee48 default
r44:eb946f49 default
Show More
urls.py
20 lines | 556 B | text/x-python | PythonLexer
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from django.conf.urls import patterns, url
from boards import views
urlpatterns = patterns('',
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
neko259
Initial commit. One test doesn't work, missing posting form.
r0 # /boards/
neko259
Removed images directory. Removed old urls. Added a bit code for the views.
r4 url(r'^$', views.index, name = 'index'),
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
# login page
url(r'^login$', views.login, name='login'),
Ilyas
Completed login and logout functionality and covered by tests.
r13 # logout page
url(r'^logout$', views.logout, name='logout'),
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
neko259
Removed images directory. Removed old urls. Added a bit code for the views.
r4 # /boards/tag/
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 url(r'^tag/(?P<tag_name>\w+)/$', views.tag, name='tag'),
neko259
Removed images directory. Removed old urls. Added a bit code for the views.
r4 # /boards/post_id/
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 url(r'^thread/(?P<post_id>\w+)/$', views.thread, name='thread'),
# /boards/theme/theme_name/
url(r'^settings$', views.settings, name='settings'),
neko259
Initial commit. One test doesn't work, missing posting form.
r0 )