author | Nishanth Amuluru <nishanth@fossee.in> |
Wed, 12 Jan 2011 00:22:27 +0530 | |
changeset 149 | 32dd15eaf9d0 |
parent 140 | 8fcde6f8f750 |
permissions | -rw-r--r-- |
29
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
1 |
from django.conf.urls.defaults import * |
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
2 |
|
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
31
diff
changeset
|
3 |
from pytask.profile.views import view_profile, edit_profile,\ |
48
3cfd74f9363e
included the urls for delete and unread notification
Nishanth Amuluru <nishanth@fossee.in>
parents:
38
diff
changeset
|
4 |
browse_notifications, view_notification,\ |
140
8fcde6f8f750
added view_user functionality
Nishanth Amuluru <nishanth@fossee.in>
parents:
69
diff
changeset
|
5 |
delete_notification, unread_notification, \ |
8fcde6f8f750
added view_user functionality
Nishanth Amuluru <nishanth@fossee.in>
parents:
69
diff
changeset
|
6 |
view_user |
29
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
|
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
8 |
urlpatterns = patterns('', |
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
9 |
|
37
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
31
diff
changeset
|
10 |
(r'^view/$', view_profile), |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
31
diff
changeset
|
11 |
(r'^edit/$', edit_profile), |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
31
diff
changeset
|
12 |
(r'^notf/browse/$', browse_notifications), |
38
c8c47fcb46f0
created a view for view notification and included the url. made changes accordingly in browse notifications
Nishanth Amuluru <nishanth@fossee.in>
parents:
37
diff
changeset
|
13 |
(r'^notf/view/nid=(\w+)$', view_notification), |
48
3cfd74f9363e
included the urls for delete and unread notification
Nishanth Amuluru <nishanth@fossee.in>
parents:
38
diff
changeset
|
14 |
(r'^notf/del/nid=(\w+)$', delete_notification), |
3cfd74f9363e
included the urls for delete and unread notification
Nishanth Amuluru <nishanth@fossee.in>
parents:
38
diff
changeset
|
15 |
(r'^notf/unr/nid=(\w+)$', unread_notification), |
140
8fcde6f8f750
added view_user functionality
Nishanth Amuluru <nishanth@fossee.in>
parents:
69
diff
changeset
|
16 |
|
8fcde6f8f750
added view_user functionality
Nishanth Amuluru <nishanth@fossee.in>
parents:
69
diff
changeset
|
17 |
(r'^user/view/uid=(\w+)$', view_user), |
29
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
18 |
) |
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
19 |