summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprashantsinalkar2017-09-14 11:38:53 +0530
committerprashantsinalkar2017-09-14 11:38:53 +0530
commit7f03e423e37e21db9861a10d050d9b8321d8e9ec (patch)
tree23f40c83030257b9924cb9d4cf34270de24938ab
parent64711bca6d8a0b312446320cbcbcab091dba1b12 (diff)
downloadSciPy2017-7f03e423e37e21db9861a10d050d9b8321d8e9ec.tar.gz
SciPy2017-7f03e423e37e21db9861a10d050d9b8321d8e9ec.tar.bz2
SciPy2017-7f03e423e37e21db9861a10d050d9b8321d8e9ec.zip
fixed submit cfp url
-rwxr-xr-xwebsite/templates/submit-cfp.html1
-rwxr-xr-xwebsite/templates/view-abstracts.html4
-rwxr-xr-xwebsite/urls.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/website/templates/submit-cfp.html b/website/templates/submit-cfp.html
index e2bf5de..4629883 100755
--- a/website/templates/submit-cfp.html
+++ b/website/templates/submit-cfp.html
@@ -22,6 +22,7 @@
{% if proposals_a > 1 %} You have exceeded the abstract submission limit.
You may view your submitted proposals by clicking <a href="{% url 'website:view_abstracts' %}" class="btn "> here</a>
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
+ {% else %}
<h2><u>Proposal Guidelines</u></h2>
<ul>
<li>The project you are willing to present should be an actual implementation rather than just an idea.</li>
diff --git a/website/templates/view-abstracts.html b/website/templates/view-abstracts.html
index d58ad48..c55e87a 100755
--- a/website/templates/view-abstracts.html
+++ b/website/templates/view-abstracts.html
@@ -27,7 +27,7 @@
</p>
{% if not proposals %}
<center>
- You have not submitted any proposal. To submit proposal click <a href="{% url 'website:cfp' %}">here </a>
+ You have not submitted any proposal. To submit proposal click <a href="{% url 'website:submitcfp' %}">here </a>
</center>
{% else %}
{% if user.is_superuser %}
@@ -127,7 +127,7 @@
</div>
</p>
{% if user.is_superuser %}
- <!-- <input type="submit" id="delete" class ="button special" style="background:#D44727;" value="Delete" name="delete"/> -->
+ <input type="submit" id="delete" class ="button special" value="Delete" name="delete"/>
<center>
<input type="submit" id="accept" class ="button special" value="Accept" name="accept"/>
<input type="submit" id="rejected" class ="button special" value="Reject" name="reject"/>
diff --git a/website/urls.py b/website/urls.py
index 06a62ef..f0203c8 100755
--- a/website/urls.py
+++ b/website/urls.py
@@ -13,7 +13,7 @@ urlpatterns = patterns('',
#url(r'^submit-cfp/$', 'website.views.cfp', name='home'),
#url(r'^submit-cfw/$', 'website.views.home', name='home'),
url(r'^accounts/register/$', 'website.views.userregister', name='userregister'),
- url(r'^accounts/login/$', 'website.views.cfp', name='cfp'),
+ #url(r'^accounts/login/$', 'website.views.cfp', name='cfp'),
url(r'^gallery/$', 'website.views.gallery', name='gallery'),
# url(r'^view-abstracts/$', 'website.views.view_abstracts', name='view_abstracts'),
url(r'^view-abstracts/$', 'website.views.view_abstracts', name='view_abstracts'),