summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorhardythe12013-10-14 12:11:04 +0530
committerhardythe12013-10-14 12:11:04 +0530
commitc0c25ce189b4c749de0a695ae7d9b273bc499e98 (patch)
tree303e753112a7019677d5ad89d5d84d8a35d6223e /website
parent462564b12d6da618a8655e2097642539785e9333 (diff)
downloadSciPy2013-c0c25ce189b4c749de0a695ae7d9b273bc499e98.tar.gz
SciPy2013-c0c25ce189b4c749de0a695ae7d9b273bc499e98.tar.bz2
SciPy2013-c0c25ce189b4c749de0a695ae7d9b273bc499e98.zip
updating for CFP to stand for call for proposals
Diffstat (limited to 'website')
-rw-r--r--website/templates/index.html2
-rw-r--r--website/templates/page.html2
-rw-r--r--website/templates/papers.html11
-rw-r--r--website/urls.py2
4 files changed, 9 insertions, 8 deletions
diff --git a/website/templates/index.html b/website/templates/index.html
index 029124a..6cef463 100644
--- a/website/templates/index.html
+++ b/website/templates/index.html
@@ -31,7 +31,7 @@
<section class="top-bar-section">
<ul class="right">
<li class="divider"></li>
- <li><a href="{% url 'website:call-for-papers' %}">Call for Papers</a>
+ <li><a href="{% url 'website:call-for-proposals' %}">Call for Proposals</a>
<li class="divider"></li>
<li class="has-dropdown"><a href="#">Conference</a>
<ul class="dropdown">
diff --git a/website/templates/page.html b/website/templates/page.html
index 534b74e..d1f21c8 100644
--- a/website/templates/page.html
+++ b/website/templates/page.html
@@ -31,7 +31,7 @@
<section class="top-bar-section">
<ul class="right">
<li class="divider"></li>
- <li><a href="{% url 'website:call-for-papers' %}">Call for Papers</a>
+ <li><a href="{% url 'website:call-for-proposals' %}">Call for Proposals</a>
<li class="divider"></li>
<li class="has-dropdown"><a href="#">Conference</a>
<ul class="dropdown">
diff --git a/website/templates/papers.html b/website/templates/papers.html
index 6bba60c..7f8d9a2 100644
--- a/website/templates/papers.html
+++ b/website/templates/papers.html
@@ -4,10 +4,10 @@
{% if status == "up" %}
<h4>Document uploaded succcessfully. </h4>
{% endif %}
-<h4>Call for papers</h4>
+<h4>Call for Proposals</h4>
<p align="justify">
- We look forward for submissions for paper presentations at SciPy India 2013.
- If you wish to present a paper, please submit an abstract of 300 to 700 words describing the topic,
+ We look forward for submissions for presentations at SciPy India 2013.
+ If you wish to present, please submit an abstract of 300 to 700 words describing the topic,
including its relevance to Python. Based on the quality of the submissions,
the conference organizers will select it either as a full fledge talk (20-30 mins) or as
<a href="http://en.wikipedia.org/wiki/PechaKucha" target="_blank">Pecha Kucha style</a> talk.
@@ -39,9 +39,10 @@
<br>
<table>
<tr><td>Call for proposals start: 7th October 2013
- <tr><td>Call for proposals end: 1st December 2013
+ <tr><td>Call for proposals end: 24th November 2013
+ <tr><td>List of accepted proposals will be published: 1st December 2013
</table>
</div>
</div>
</div> <!-- row -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
diff --git a/website/urls.py b/website/urls.py
index f0e0fec..380f13d 100644
--- a/website/urls.py
+++ b/website/urls.py
@@ -10,7 +10,7 @@ urlpatterns = patterns('',
url(r'^contact/$', 'website.views.contact_page', name='contact'),
# Call for papers
- url(r'^call-for-papers/$', 'website.views.call_for_papers_page', name='call-for-papers'),
+ url(r'^call-for-proposals/$', 'website.views.call_for_papers_page', name='call-for-proposals'),
# Conference Section
url(r'^schedule/$', 'website.views.schedule_page', name='schedule'),