diff options
author | komalsheth286 | 2016-10-04 14:37:08 +0530 |
---|---|---|
committer | komalsheth286 | 2016-10-04 14:37:08 +0530 |
commit | e5ab06db0b960f73bc86203944377528d645533c (patch) | |
tree | c431686ab0cef9e06e4616739f9e7643d09d7eb8 /website/templates | |
parent | be87ddf10812c5814fe93a7d6529b15bd4d2608c (diff) | |
download | SciPy2016-e5ab06db0b960f73bc86203944377528d645533c.tar.gz SciPy2016-e5ab06db0b960f73bc86203944377528d645533c.tar.bz2 SciPy2016-e5ab06db0b960f73bc86203944377528d645533c.zip |
Forgot password API
Diffstat (limited to 'website/templates')
-rwxr-xr-x | website/templates/base.html | 4 | ||||
-rwxr-xr-x | website/templates/cfp.html | 2 | ||||
-rwxr-xr-x | website/templates/comment-abstract.html | 2 | ||||
-rwxr-xr-x | website/templates/register/password_reset_form.html | 3 | ||||
-rwxr-xr-x | website/templates/submit-cfw.html | 2 | ||||
-rwxr-xr-x | website/templates/view-abstracts.html | 5 |
6 files changed, 11 insertions, 7 deletions
diff --git a/website/templates/base.html b/website/templates/base.html index fd20174..fb3d745 100755 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -428,7 +428,7 @@ </ul>
Visit SciPy.in/
- <a style="color:white;" href="http://scipy.in/2009">2009</a>/
+ <a style="color:white;" target="_blank" href="http://scipy.in/2009">2009</a>/
<a style="color:white;" target="_blank" href="http://scipy.in/scipyin/2010/">2010</a>/
<a style="color:white;" target="_blank" href="http://scipy.in/scipyin/2011/">2011</a>/
<a style="color:white;" target="_blank" href="http://scipy.in/2012">2012</a>/
@@ -441,7 +441,7 @@ <center><img src="{% static 'img/fossee.png' %}" width=100 height=40>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"></a>
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></center>
- <center>This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<center>
+ <center>This work is licensed under a <a target="_blank" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.<center>
<br>
</div>
diff --git a/website/templates/cfp.html b/website/templates/cfp.html index e0eb537..8886937 100755 --- a/website/templates/cfp.html +++ b/website/templates/cfp.html @@ -101,7 +101,7 @@ {{ form.as_p }} <button class="button special" style="background:#D44727" name ="login"type="submit">Login</button><br><br> <a style="padding-right : 20px;" href="{% url 'website:userregister' %}" class="btn btn btn-primary">Create an Account</a> - <a href="/forgotpassword/">Forgot Password?</a> + <a href="/2016/forgotpassword/">Forgot Password?</a> {% csrf_token %} </form> <!-- </div> --> diff --git a/website/templates/comment-abstract.html b/website/templates/comment-abstract.html index 3bb6824..eb540f7 100755 --- a/website/templates/comment-abstract.html +++ b/website/templates/comment-abstract.html @@ -89,7 +89,7 @@ {% for rate in rates %} <div> {{rate.rating}}/10 - by {{ rate.user.first_name }} {{ rate.user.last_name }} + by - {{ rate.user }} </div> {% endfor %} diff --git a/website/templates/register/password_reset_form.html b/website/templates/register/password_reset_form.html index d2ac4f8..3075735 100755 --- a/website/templates/register/password_reset_form.html +++ b/website/templates/register/password_reset_form.html @@ -50,7 +50,8 @@ Kindly enter your email ID used for registration. The password reset link will b <form action="" method="post"> {% csrf_token %} {{ form.email.errors }} - <p><label for="id_email">E-mail address:</label> {{ form.email }} <input type="submit" value="Reset password" /></p> + <p><label for="id_email">E-mail address:</label> {{ form.email }} + <br/><input type="submit" class ="button special" value="Reset password" /></p> <!-- <button class="btn btn-sm btn-primary" type="submit">Request</button> <a class="btn btn-sm " href="{{URL_ROOT}}/accounts/login/">Cancel</a> --> diff --git a/website/templates/submit-cfw.html b/website/templates/submit-cfw.html index f5dbc77..cae6d34 100755 --- a/website/templates/submit-cfw.html +++ b/website/templates/submit-cfw.html @@ -51,7 +51,7 @@ <div id="wrapper"> <div id="main"> <section id="content" class="main"> -{% if proposals_w > 1 %} You have exceeded the abstract submission limit. +{% if proposals_w > 1 %} You have exceeded the workshop proposal submission limit. You may view your submitted proposals by clicking <a href="{% url 'website:view_abstracts' %}" class="btn "> here</a> </div> </div> diff --git a/website/templates/view-abstracts.html b/website/templates/view-abstracts.html index c1f6968..4933244 100755 --- a/website/templates/view-abstracts.html +++ b/website/templates/view-abstracts.html @@ -107,7 +107,10 @@ You have not submitted any proposal. To submit proposal click <a href="{% url 'w <td style="white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:.5px;"> {{proposal.title}}</td> <td ><a href="{% url 'website:abstract_details' proposal.id %}">View</a> </td> {% endif %} - <td>{{proposal.rating}} + + <td> {% for rating in ratings %} + {{rating.rating}} + {% endfor %} <!-- <center> {{ proposal.comments_set.count }} </center> --></td> |