summaryrefslogtreecommitdiff
path: root/profile/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'profile/urls.py')
-rw-r--r--profile/urls.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/profile/urls.py b/profile/urls.py
deleted file mode 100644
index 0949c66..0000000
--- a/profile/urls.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from django.conf.urls.defaults import *
-
-from pytask.profile.views import view_profile, edit_profile,\
- browse_notifications, view_notification,\
- delete_notification, unread_notification
-
-urlpatterns = patterns('',
-
- (r'^view/$', view_profile),
- (r'^edit/$', edit_profile),
- (r'^notf/browse/$', browse_notifications),
- (r'^notf/view/nid=(\w+)$', view_notification),
- (r'^notf/del/nid=(\w+)$', delete_notification),
- (r'^notf/unr/nid=(\w+)$', unread_notification),
-)
-