summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py
diff options
context:
space:
mode:
authordhiru <dhirusingh11@gmail.com>2014-05-10 18:07:53 +0530
committerdhiru <dhirusingh11@gmail.com>2014-05-10 18:07:53 +0530
commit2dfdcce2c241d7b186377913b0b1046d0f7daa3a (patch)
tree69db98c5e7edb1b6c89fc1cf65af02ddb6676ec1 /gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py
parent6f5f14542e91720bce09092a143bd975926cda65 (diff)
downloadgnowsys-2dfdcce2c241d7b186377913b0b1046d0f7daa3a.tar.gz
generate new urls
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py
index da0baa4..cb5111d 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/video.py
@@ -1,11 +1,13 @@
from django.conf.urls import patterns, url
urlpatterns = patterns('gnowsys_ndf.ndf.views.videoDashboard',
- url(r'^(?P<video_id>[\w-]+)$', 'videoDashboard', name='video'),
+ url(r'^$', 'videoDashboard', name='video'),
+# url(r'^(?P<video_id>[\w-]+)$', 'videoDashboard', name='video'),
#url(r'^videos/', 'videoDashboard', name='videoDashboard'),
- url(r'^thumbnail/(?P<_id>[\w-]+)$', 'getvideoThumbnail', name='getvideoThumbnail'),
- url(r'^fullvideo/(?P<_id>[\w-]+)$', 'getFullvideo', name='getFullvideo'),
- url(r'^video_search/$', 'video_search', name='video_search'),
- url(r'^details/(?P<_id>[\w-]+)$', 'video_detail', name='video_detail'),
- url(r'^edit/(?P<_id>[\w-]+)$', 'video_edit', name='video_edit')
+ url(r'^/thumbnail/(?P<_id>[\w-]+)$', 'getvideoThumbnail', name='getvideoThumbnail'),
+ url(r'^/fullvideo/(?P<_id>[\w-]+)$', 'getFullvideo', name='getFullvideo'),
+ url(r'^/video_search/$', 'video_search', name='video_search'),
+ url(r'^/(?P<_id>[\w-]+)$', 'video_detail', name='video_detail'),
+ url(r'^/details/(?P<_id>[\w-]+)$', 'video_detail', name='video_detail'),
+ url(r'^/edit/(?P<_id>[\w-]+)$', 'video_edit', name='video_edit')
)