diff options
author | Sashi20 | 2020-12-14 20:56:07 +0530 |
---|---|---|
committer | Sashi20 | 2020-12-14 20:56:07 +0530 |
commit | 292471caca610611c9732ccde1ba5f15bf72c52d (patch) | |
tree | 3343acbc8a69eaf2859c0b0d1707d752361862a0 | |
parent | f480f9c01ca37f24259f9a748b9146c58ae3d3ac (diff) | |
download | SciPy2020-292471caca610611c9732ccde1ba5f15bf72c52d.tar.gz SciPy2020-292471caca610611c9732ccde1ba5f15bf72c52d.tar.bz2 SciPy2020-292471caca610611c9732ccde1ba5f15bf72c52d.zip |
Disable proposal submission form
-rwxr-xr-x | static/website/templates/submit-cfp.html | 8 | ||||
-rwxr-xr-x | static/website/templates/submit-cfw.html | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html index 88bd54e..8695395 100755 --- a/static/website/templates/submit-cfp.html +++ b/static/website/templates/submit-cfp.html @@ -10,6 +10,8 @@ <section id="view_proposal" class="section view_proposal"> <div class="container"> <br> + {% if cfp_dates.receive_proposals %} + <center> <h1>Submit Proposal</h1> </center> @@ -108,6 +110,12 @@ </center> </form> </div> + + {% else %} + <center> + <h2>We no longer accept proposals</h2> + </center> + {% endif %} </div> </section> {% endblock %} diff --git a/static/website/templates/submit-cfw.html b/static/website/templates/submit-cfw.html index 6d4136c..4f9ffcb 100755 --- a/static/website/templates/submit-cfw.html +++ b/static/website/templates/submit-cfw.html @@ -5,6 +5,7 @@ <section id="submitcfw" class="section submitcfw"> <div class="container"> + {% if cfp_dates.receive_proposals %} <p> <center> <h2>Submit Workshop Proposal</h2> @@ -110,6 +111,11 @@ <a href="{% url 'website:cfp' %}" class="btn btn-info" role="button">Back</a> </center> </form> + {% else %} + <center> + <h2>We no longer accept proposals</h2> + </center> + {% endif %} </div> </section> |