summaryrefslogtreecommitdiff
path: root/profile/urls.py
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 11:25:21 +0530
committerNishanth Amuluru2011-01-07 11:25:21 +0530
commit176fad1d595fc47239609ab39ecc3ab4dd6a8e18 (patch)
tree16461c2ed13cd6907ecafe6def9b47d88663b747 /profile/urls.py
parent7c47c84aea9196fdbe76b2d905774f81cffea112 (diff)
downloadpytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.tar.gz
pytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.tar.bz2
pytask-176fad1d595fc47239609ab39ecc3ab4dd6a8e18.zip
Added template for viewing profile
Diffstat (limited to 'profile/urls.py')
-rw-r--r--profile/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/profile/urls.py b/profile/urls.py
new file mode 100644
index 0000000..b13cc25
--- /dev/null
+++ b/profile/urls.py
@@ -0,0 +1,9 @@
+from django.conf.urls.defaults import *
+
+from pytask.profile.views import view_profile
+
+urlpatterns = patterns('',
+
+ (r'view', view_profile),
+)
+