summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py
diff options
context:
space:
mode:
authorAnuja G <anuja.gk@gmail.com>2014-10-01 22:24:11 +0530
committerAnuja G <anuja.gk@gmail.com>2014-10-01 22:24:11 +0530
commit030d0ef82210256312d79250dc3e48a253b07f61 (patch)
tree4fe8f9d515e876480086ab449fba09cc0af0de2f /gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py
parent3554d10cff90a38077e66194f04d41a57ea5b704 (diff)
downloadgnowsys-030d0ef82210256312d79250dc3e48a253b07f61.tar.gz
intemediate changes
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py
index e785e033..96074527 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/forum.py
@@ -7,7 +7,11 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.forum',
url(r'^/create/$', 'create_forum', name='create_forum'),
# url(r'^/show/(?P<forum_id>[\w-]+)$', 'display_forum', name='show'),
url(r'^/edit_forum/(?P<forum_id>[\w-]+)$', 'edit_forum', name='edit_forum'),
+ url(r'^/edit_thread/(?P<thread_id>[\w-]+)$', 'edit_thread', name='edit_thread'),
+
url(r'^/delete/(?P<node_id>[\w-]+)$', 'delete_forum', name='forum_delete'),
+ url(r'^/delete/(?P<node_id>[\w-]+)$', 'delete_thread', name='thread_delete'),
+
url(r'^/(?P<forum_id>[\w-]+)$', 'display_forum', name='show'),
url(r'^/(?P<forum_id>[\w-]+)/thread/create/$', 'create_thread', name='create_thread'),###
url(r'^/thread/(?P<thread_id>[\w-]+)$', 'display_thread', name='thread'),