summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkomalsheth2862016-11-30 11:38:33 +0530
committerkomalsheth2862016-11-30 11:38:33 +0530
commit7545783d69c61dd9167f2be730137792603d24cd (patch)
tree95c75b13a2b5c425bf7eb49cef5bd9141e4ab25c
parentd73779c5a599b572f27be0c2bd574b1032b8d901 (diff)
downloadSciPy2016-7545783d69c61dd9167f2be730137792603d24cd.tar.gz
SciPy2016-7545783d69c61dd9167f2be730137792603d24cd.tar.bz2
SciPy2016-7545783d69c61dd9167f2be730137792603d24cd.zip
Submission Links Blocked
-rwxr-xr-xwebsite/templates/abstract-details.html6
-rwxr-xr-xwebsite/templates/cfp.html3
-rwxr-xr-xwebsite/urls.py4
3 files changed, 9 insertions, 4 deletions
diff --git a/website/templates/abstract-details.html b/website/templates/abstract-details.html
index 9b86593..5a91cff 100755
--- a/website/templates/abstract-details.html
+++ b/website/templates/abstract-details.html
@@ -53,6 +53,12 @@
{% if proposal.prerequisite %}
<p><b>Prerequisite: </b>&nbsp;{{ proposal.prerequisite |linebreaks }}</p>
{% endif%}
+ <p><b>Duration: </b>&nbsp;{{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <p><b>Tags: </b>&nbsp;{{ proposal.tags }}</p>
+ {% else %}
+ <p><b>Level: </b>&nbsp;{{ proposal.tags }}</p>
+ {% endif %}
<p><b>Date Created: </b>&nbsp;{{ proposal.date_created }}</p>
{% if url %}
<p><b>Attachment: </b>&nbsp;
diff --git a/website/templates/cfp.html b/website/templates/cfp.html
index 8edf1e2..d76fbdf 100755
--- a/website/templates/cfp.html
+++ b/website/templates/cfp.html
@@ -84,8 +84,7 @@
<center><a href="{% url 'website:view_abstracts' %}" style="background:#D44727" class="button special">View Proposals</a> </center>
{% else %}
<center>
- <a href="{% url 'website:submitcfp' %}" style="background:#D44727" class="button special">Submit an Abstract</a>
- <a href="{% url 'website:submitcfw' %}" style="background:#D44727" class="button special">Submit a Workshop</a>
+
<a href="{% url 'website:view_abstracts' %}" style="background:#D44727" class="button special">View Proposals</a>
</center>
{% endif %}
diff --git a/website/urls.py b/website/urls.py
index 4347950..8e5c83e 100755
--- a/website/urls.py
+++ b/website/urls.py
@@ -8,8 +8,8 @@ urlpatterns = patterns('',
url(r'^$', 'website.views.home', name='home'),
# url(r'^contact/$', 'website.views.contact_us', name='contact'),
url(r'^cfp/$', 'website.views.cfp', name='cfp'),
- url(r'^submit-cfp/$', 'website.views.submitcfp', name='submitcfp'),
- url(r'^submit-cfw/$', 'website.views.submitcfw', name='submitcfw'),
+ # url(r'^submit-cfp/$', 'website.views.submitcfp', name='submitcfp'),
+ # url(r'^submit-cfw/$', 'website.views.submitcfw', name='submitcfw'),
url(r'^accounts/register/$', 'website.views.userregister', name='userregister'),
url(r'^accounts/login/$', 'website.views.cfp', name='cfp'),