summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py
diff options
context:
space:
mode:
authorsunnychaudhari <yuvaraj.chaudhari1@gmail.com>2014-10-05 00:02:03 +0530
committersunnychaudhari <yuvaraj.chaudhari1@gmail.com>2014-10-05 00:02:03 +0530
commit8dde3d8065bd3ce3cc5a55a45b2dd39e3a72aef0 (patch)
tree64b562891d46b2df20549ad3a1e18b7dea5eb077 /gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py
parent846d837919c7e12300f4a38abd389d078c8b9f96 (diff)
downloadgnowsys-8dde3d8065bd3ce3cc5a55a45b2dd39e3a72aef0.tar.gz
browse_resource.py url renamed as e-library.py
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py
new file mode 100644
index 0000000..a2204b2
--- /dev/null
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/e-library.py
@@ -0,0 +1,7 @@
+from django.conf.urls import patterns, url
+
+urlpatterns = patterns('gnowsys_ndf.ndf.views.e-library',
+ url(r'^$', 'resource_list'),
+ url(r'^/(?P<app_id>[\w-]+)$', 'resource_list', name='resource_list'),
+ url(r'^/details/(?P<_id>[\w-]+)$', 'file_detail', name='resource_detail')
+) \ No newline at end of file