diff options
author | Sashi20 | 2020-12-14 09:03:39 +0530 |
---|---|---|
committer | Sashi20 | 2020-12-14 09:03:39 +0530 |
commit | f480f9c01ca37f24259f9a748b9146c58ae3d3ac (patch) | |
tree | e19c42dd3207fa41e40aec1fc83bc7b99a03cb67 | |
parent | 16c55d04f1e173dda4776a27ef5e7d772da9574f (diff) | |
download | SciPy2020-f480f9c01ca37f24259f9a748b9146c58ae3d3ac.tar.gz SciPy2020-f480f9c01ca37f24259f9a748b9146c58ae3d3ac.tar.bz2 SciPy2020-f480f9c01ca37f24259f9a748b9146c58ae3d3ac.zip |
Hide submit proposal button on cfp page
-rwxr-xr-x | static/website/templates/cfp.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/website/templates/cfp.html b/static/website/templates/cfp.html index 7a34c71..b537913 100755 --- a/static/website/templates/cfp.html +++ b/static/website/templates/cfp.html @@ -60,9 +60,13 @@ </center> {% else %} <center> + {% if cfp_dates.receive_proposals %} <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a> <a href="{% url 'website:submitcfp' %}" class ="btn btn-info" role="button"> Submit paper </a> <a href="{% url 'website:submitcfw' %}" class ="btn btn-info" role="button">Submit workshop </a> + {% else %} + <a href="{% url 'website:view_abstracts' %}" class="btn btn-info">View Proposals</a> + {% endif %} </center> {% endif %} {% else %} |