summaryrefslogtreecommitdiff
path: root/profile/urls.py
diff options
context:
space:
mode:
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),
+)
+