diff options
author | hardythe1 | 2015-07-03 15:56:17 +0530 |
---|---|---|
committer | hardythe1 | 2015-07-03 15:56:17 +0530 |
commit | 96c7de100fc68ad1bc31d0ca10327dddc27e4bfb (patch) | |
tree | 0d7ef6a6bbe0b7204c515d1d8a78a12db5b94ec7 | |
parent | 153cf2476a90847d24ef390a4edaf3088113f0b9 (diff) | |
download | SciPy2015-96c7de100fc68ad1bc31d0ca10327dddc27e4bfb.tar.gz SciPy2015-96c7de100fc68ad1bc31d0ca10327dddc27e4bfb.tar.bz2 SciPy2015-96c7de100fc68ad1bc31d0ca10327dddc27e4bfb.zip |
add message
-rw-r--r-- | website/templates/cfp.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/website/templates/cfp.html b/website/templates/cfp.html index 8247f36..237be4e 100644 --- a/website/templates/cfp.html +++ b/website/templates/cfp.html @@ -32,15 +32,23 @@ <div id="about" name="about"> <div class="container"> <div class="row white"> - <h2 class="centered">Call for Proposals</h2> + {% if proposal_submit %} + <div class="alert alert-success" role="alert"> + <button type="button" class="close" data-dismiss="alert" aria-label="Close"> + <span aria-hidden="true">×</span> + </button> + <p>Thank You for submitting a talk. Propsal has been saved successfully !</p> + </div> + {% endif %} {% if login_required %} <div class="alert alert-success" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> - <p>Thank You for submitting a Talk ! Your proposal has been saved successfully.</p> - </div> + <p>You need to login for submitting a talk !</p> + </div> {% endif %} + <h2 class="centered">Call for Proposals</h2> <hr> <div class="col-md-6"> <p align="justify">We look forward to your proposals. Conference aims to promote <strong>Python for Scientific Computing and Education</strong>. Topics like pedagogy, exploration, modeling or from both applied and developmental perspectives are welcome. Contributions from academia as well as industry are welcome. If you wish to propose a talk at the conference, kindly follow the guidelines given below.</p> @@ -69,7 +77,7 @@ {% else %} To Submit a Talk Login with: <p><a href="{% url 'social:begin' 'google-oauth2' %}?next={{ request.path }}" class="btn btn btn-primary">Google</a> or - <a href="{% url 'social:begin' 'facebook' %}?next={{ request.path }}" class="btn btn btn-primary">Facebook</a> or + <a href="{% url 'social:begin' 'facebook' %}?next={{ request.path }}" class="btn btn btn-primary">Facebook</a> {% endif %} </div> </div> |