diff options
author | Sashi20 | 2020-12-14 09:04:52 +0530 |
---|---|---|
committer | GitHub | 2020-12-14 09:04:52 +0530 |
commit | aee3de36ffa51fb64a5c68a62f86d6af2abceb9a (patch) | |
tree | e19c42dd3207fa41e40aec1fc83bc7b99a03cb67 | |
parent | 74566bafb39d2951bd53b0bae5af117553abe6de (diff) | |
parent | f480f9c01ca37f24259f9a748b9146c58ae3d3ac (diff) | |
download | SciPy2020-aee3de36ffa51fb64a5c68a62f86d6af2abceb9a.tar.gz SciPy2020-aee3de36ffa51fb64a5c68a62f86d6af2abceb9a.tar.bz2 SciPy2020-aee3de36ffa51fb64a5c68a62f86d6af2abceb9a.zip |
Merge pull request #9 from Sashi20/development
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 %} |