diff -r 4f0cfd486d9b -r 8fcde6f8f750 pytask/profile/urls.py --- a/pytask/profile/urls.py Tue Jan 11 11:56:34 2011 +0530 +++ b/pytask/profile/urls.py Tue Jan 11 12:30:10 2011 +0530 @@ -2,7 +2,8 @@ from pytask.profile.views import view_profile, edit_profile,\ browse_notifications, view_notification,\ - delete_notification, unread_notification + delete_notification, unread_notification, \ + view_user urlpatterns = patterns('', @@ -12,5 +13,7 @@ (r'^notf/view/nid=(\w+)$', view_notification), (r'^notf/del/nid=(\w+)$', delete_notification), (r'^notf/unr/nid=(\w+)$', unread_notification), + + (r'^user/view/uid=(\w+)$', view_user), )