##// END OF EJS Templates
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15

File last commit:

r57:dcbc67f3 default
r73:86298773 default
Show More
urls.py
25 lines | 804 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
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 url(r'^$', views.index, name='index'),
# /boards/page/
url(r'^page/(?P<page>\w+)/$', 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
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/tag/tag_name/
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 url(r'^tag/(?P<tag_name>\w+)/$', views.tag, name='tag'),
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/tag/tag_id/page/
url(r'^tag/(?P<tag_name>\w+)/page/(?P<page>\w+)/$', views.tag, name='tag'),
# /boards/thread/
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
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 url(r'^tags$', views.all_tags, name='tags'),
neko259
Initial commit. One test doesn't work, missing posting form.
r0 )