diff options
author | hardythe1 | 2015-01-23 18:01:30 +0530 |
---|---|---|
committer | hardythe1 | 2015-01-23 18:01:30 +0530 |
commit | c7ec89d3eef960780d10f68682d54ac768d2ceb5 (patch) | |
tree | 8d206dd61ed905a6c26480d16f2cc890464c2c38 /tbc | |
parent | 471d4322c47307eec88b2111c35c38f4c0ef3af3 (diff) | |
download | Python-TBC-Interface-c7ec89d3eef960780d10f68682d54ac768d2ceb5.tar.gz Python-TBC-Interface-c7ec89d3eef960780d10f68682d54ac768d2ceb5.tar.bz2 Python-TBC-Interface-c7ec89d3eef960780d10f68682d54ac768d2ceb5.zip |
redirected to login page if not logged for old book submission
Diffstat (limited to 'tbc')
-rwxr-xr-x | tbc/templates/tbc/login.html | 14 | ||||
-rwxr-xr-x | tbc/views.py | 10 |
2 files changed, 18 insertions, 6 deletions
diff --git a/tbc/templates/tbc/login.html b/tbc/templates/tbc/login.html index c3bbfab..869cf8d 100755 --- a/tbc/templates/tbc/login.html +++ b/tbc/templates/tbc/login.html @@ -52,12 +52,20 @@ </center> {% endif %} +{% if require_login %} + <center> + <div class="alert" style="width:350px;height:23px;"> + <a class="close" data-dismiss="alert" href="#">×</a> + <p>The requested page requires login !</p> + </div> + </center> + <div class="clearfix"></div> +{% endif %} + + <div id="content-wrap" style="max-width: 400px;"> <h3>Login</h3> <hr> - {% if require_login %} - <p>The requsted page requires login.</p> - {% endif %} <form action="/login/" method=POST enctype="multipart/form-data"> {% csrf_token %} {{ form.as_p }} diff --git a/tbc/views.py b/tbc/views.py index 3d981f2..ffe7466 100755 --- a/tbc/views.py +++ b/tbc/views.py @@ -324,9 +324,13 @@ def UpdatePassword(request): def SubmitBook(request): context = {} - curr_user = request.user - if not _checkProfile(curr_user): - return HttpResponseRedirect("/profile/?update=profile") + if request.user.is_anonymous(): + return HttpResponseRedirect("/login/?require_login=true") + else: + curr_user = request.user + if curr_user.isauthenticated(): + if not _checkProfile(curr_user): + return HttpResponseRedirect("/profile/?update=profile") if request.method == 'POST': form = BookForm(request.POST) |