author | nishanth |
Fri, 16 Apr 2010 11:14:31 +0530 | |
changeset 62 | b7e47cc39342 |
parent 41 | ab0a8a72b069 |
permissions | -rwxr-xr-x |
5 | 1 |
from django.conf.urls.defaults import * |
2 |
||
62
b7e47cc39342
renamed the project to ws_app and modified imports accordingly .
nishanth
parents:
41
diff
changeset
|
3 |
from ws_app.feedback import views as feed_views |
5 | 4 |
|
5 |
urlpatterns = patterns('', |
|
10
c52d170969f0
quite a few changes. modified models and feedback views .
nishanth
parents:
5
diff
changeset
|
6 |
('^submit/(\w+)$', feed_views.submit_feedback), |
c52d170969f0
quite a few changes. modified models and feedback views .
nishanth
parents:
5
diff
changeset
|
7 |
('^list/(\w+)$', feed_views.list_feedbacks), |
41
ab0a8a72b069
added view report functionality. have to make it look better.
nishanth
parents:
10
diff
changeset
|
8 |
('^report/(\w+)$', feed_views.view_report), |
5 | 9 |
) |