author | Nishanth Amuluru <nishanth@fossee.in> |
Fri, 07 Jan 2011 12:21:43 +0530 | |
changeset 275 | c701e68f8d35 |
parent 269 | dde894b36370 |
child 276 | c8c47fcb46f0 |
permissions | -rw-r--r-- |
267
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 |
|
275
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
269
diff
changeset
|
3 |
from pytask.profile.views import view_profile, edit_profile,\ |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
269
diff
changeset
|
4 |
browse_notifications |
267
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
5 |
|
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
6 |
urlpatterns = patterns('', |
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
7 |
|
275
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
269
diff
changeset
|
8 |
(r'^view/$', view_profile), |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
269
diff
changeset
|
9 |
(r'^edit/$', edit_profile), |
c701e68f8d35
fixed a typo and browse notifications works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
269
diff
changeset
|
10 |
(r'^notf/browse/$', browse_notifications), |
267
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
11 |
) |
b1245d75938d
Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff
changeset
|
12 |