##// END OF EJS Templates
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login Added base css and html resources

File last commit:

r9:f67fe28f default
r9:f67fe28f default
Show More
urls.py
19 lines | 466 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'),
neko259
Removed images directory. Removed old urls. Added a bit code for the views.
r4 # /boards/tag/
url(r'^(?P<tag>\w+)/$', views.tag, name = 'tag'),
# /boards/post_id/
url(r'^(?P<post>\w+)/$', views.thread, name = 'thread'),
# /boards/tag/post/
neko259
Changed the url to the post page. Added one more TODO.
r6 url(r'^post.html$', views.new_post,
neko259
Initial commit. One test doesn't work, missing posting form.
r0 name='post'),
)