##// END OF EJS Templates
Added new markdown field. Added gets algorithm with regexes.
Added new markdown field. Added gets algorithm with regexes.

File last commit:

r35:4962ee48 default
r39:e544cbe2 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'),
)