diff options
author | komalsheth286 | 2016-11-30 11:38:33 +0530 |
---|---|---|
committer | komalsheth286 | 2016-11-30 11:38:33 +0530 |
commit | 7545783d69c61dd9167f2be730137792603d24cd (patch) | |
tree | 95c75b13a2b5c425bf7eb49cef5bd9141e4ab25c | |
parent | d73779c5a599b572f27be0c2bd574b1032b8d901 (diff) | |
download | SciPy2016-7545783d69c61dd9167f2be730137792603d24cd.tar.gz SciPy2016-7545783d69c61dd9167f2be730137792603d24cd.tar.bz2 SciPy2016-7545783d69c61dd9167f2be730137792603d24cd.zip |
Submission Links Blocked
-rwxr-xr-x | website/templates/abstract-details.html | 6 | ||||
-rwxr-xr-x | website/templates/cfp.html | 3 | ||||
-rwxr-xr-x | website/urls.py | 4 |
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> {{ proposal.prerequisite |linebreaks }}</p> {% endif%} + <p><b>Duration: </b> {{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p> + {% if proposal.proposal_type == "ABSTRACT"%} + <p><b>Tags: </b> {{ proposal.tags }}</p> + {% else %} + <p><b>Level: </b> {{ proposal.tags }}</p> + {% endif %} <p><b>Date Created: </b> {{ proposal.date_created }}</p> {% if url %} <p><b>Attachment: </b> 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'), |