diff options
author | Primal Pappachan | 2012-03-25 00:31:07 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-03-25 00:31:07 +0530 |
commit | 91d4fefc4f5c4c9e438fe08df9b28c2dbcd4f8a1 (patch) | |
tree | f3b498e8ac8343c8e261ce9252bcddb0ee253568 | |
parent | 9dae2766731f90638d4c593dcf09f5085caad8fd (diff) | |
download | aloha-91d4fefc4f5c4c9e438fe08df9b28c2dbcd4f8a1.tar.gz aloha-91d4fefc4f5c4c9e438fe08df9b28c2dbcd4f8a1.tar.bz2 aloha-91d4fefc4f5c4c9e438fe08df9b28c2dbcd4f8a1.zip |
pdf generation and details page url added
-rw-r--r-- | allotter/urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/allotter/urls.py b/allotter/urls.py index 611fb88..09383e0 100644 --- a/allotter/urls.py +++ b/allotter/urls.py @@ -4,7 +4,9 @@ urlpatterns = patterns('allotter.views', url(r'^login/$', 'user_login'), url(r'^logout/$', 'user_logout'), url(r'^apply/$', 'apply'), - url(r'^(?P<reg_no>\w+)/submit/$', 'submit'), #change into numbers + url(r'^details/$', 'submit_details'), + url(r'^get_pdf/$', 'generate_pdf'), + url(r'^(?P<reg_no>\w+)/submit/$', 'submit_options'), #change into numbers url(r'^(?P<reg_no>\w+)/complete/$', 'complete'), #change into numbers url(r'^$', 'apply'), #url(r'^quit/$', 'quit'), |