diff options
author | hardythe1 | 2013-12-11 00:58:37 +0530 |
---|---|---|
committer | hardythe1 | 2013-12-11 00:58:37 +0530 |
commit | 311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79 (patch) | |
tree | 399f9506911ee6ff05421409e8e127bf5b3aafd6 | |
parent | db2047b5fa31588675002c24e942eefb6b7575b3 (diff) | |
download | SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.tar.gz SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.tar.bz2 SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.zip |
Closing registration & CFP
-rw-r--r-- | scipy/urls.py | 5 | ||||
-rw-r--r-- | website/templates/accepted_abstracts.html | 3 | ||||
-rw-r--r-- | website/templates/invited_speakers.html | 5 | ||||
-rw-r--r-- | website/templates/papers.html | 41 | ||||
-rw-r--r-- | website/templates/register_2013.html | 25 |
5 files changed, 26 insertions, 53 deletions
diff --git a/scipy/urls.py b/scipy/urls.py index 6c3ea05..29a5891 100644 --- a/scipy/urls.py +++ b/scipy/urls.py @@ -1,6 +1,7 @@ from django.conf.urls import patterns, include, url from django.contrib import admin +from website.views import * admin.autodiscover() urlpatterns = patterns('', @@ -10,9 +11,9 @@ urlpatterns = patterns('', # Accounts urls url(r'accounts/login/$', 'scipy.views.user_login'), url(r'accounts/logout/$', 'scipy.views.user_logout'), - url(r'accounts/register/$', 'scipy.views.user_register'), + url(r'accounts/register/$', 'website.views.call_for_papers_page', name='call-for-proposals'), url(r'accounts/profile/$', 'scipy.views.user_profile'), - url(r'accounts/upload-document/$', 'scipy.views.upload_document', name='upload-document'), + url(r'accounts/upload-document/$', 'website.views.call_for_papers_page', name='call-for-proposals'), # Reusing the admin password reset url(r'accounts/password-change/$', 'django.contrib.auth.views.password_change', name='password_change'), url(r'accounts/password-change/done/$', 'django.contrib.auth.views.password_change_done', name='password_change_done'), diff --git a/website/templates/accepted_abstracts.html b/website/templates/accepted_abstracts.html index a56cc57..3a6a2ef 100644 --- a/website/templates/accepted_abstracts.html +++ b/website/templates/accepted_abstracts.html @@ -1,8 +1,9 @@ {% extends 'page.html'%} {% block breadcrumbs %} +<li class="current"><a href="">Selected Abstracts</a></li> <li><a href="{% url 'website:invited-speakers'%}">Invited Speakers</a></li> -<li><a href="{% url 'website:accepted-abstracts'%}">Selected Abstracts</a></li> +<li><a href="{% url 'website:schedule'%}">Schedule</a></li> {% endblock %} {% block content %} diff --git a/website/templates/invited_speakers.html b/website/templates/invited_speakers.html index fc5f773..b76b40a 100644 --- a/website/templates/invited_speakers.html +++ b/website/templates/invited_speakers.html @@ -2,8 +2,9 @@ {% load static %} {% block breadcrumbs %} -<li><a href="{% url 'website:invited-speakers'%}">Invited Speakers</a></li> -<li><a href="{% url 'website:list-abstracts'%}">List of Abstracts</a></li> +<li class="current"><a href="">Invited Speakers</a></li> +<li><a href="{% url 'website:accepted-abstracts'%}">Accepted Abstracts</a></li> +<li><a href="{% url 'website:schedule'%}">Schedule</a></li> {% endblock %} {% block content %} diff --git a/website/templates/papers.html b/website/templates/papers.html index 90a1f2c..85bb83c 100644 --- a/website/templates/papers.html +++ b/website/templates/papers.html @@ -18,43 +18,8 @@ {% endif %} <h4>Call for Proposals</h4> - <p align="justify"> - We look forward to submissions for presentations at SciPy India 2013. Please submit an abstract of 400 to 700 words describing the topic, including its relevance to Python. Only submissions with an actual implementation will be considered for presentation (i.e. proposals to implement the code are not acceptable, partial implementations are acceptable so long as they demonstrate the features discussed). Please provide links to your code if this is an open source implementation. - -Based on the quality of the submissions, the conference organizers will select it either as a full fledged talk (20-30 mins) or - <a href="http://en.wikipedia.org/wiki/PechaKucha" target="_blank">Pecha Kucha style</a> talk. - </p> - <p> - <strong>If you wish to present a talk at the conference, please follow the guidelines below.</strong> - </p> -<br> -<div class="large-8 columns" style="border: 3px solid #f5f5f5; height:250px;"> - <h4>Submission Guidelines</h4> - <ul style="margin: 0 0 0 15px;"> - <li> - <a class="button tiny" href="/2013/accounts/register">Register</a> to submit a proposal (this registration is <b>NOT</b> the - <a href="{% url 'website:register'%}">conference registration</a>) - </li> - <li> - <a class="button tiny success" href="/2013/accounts/login">Login</a> & <a class="button tiny success" href="/2013/accounts/upload-document">Upload</a> your proposal in the form of text file or a pdf file - </li> - <li> - Submissions whose main purpose is to promote a commercial product or service will be refused - </li> - <li> - All accepted proposals must be presented at the conference by at least one author - </li> - </ul> -</div> -<div class="large-4 columns" style="background: #f5f5f5; height:250px;"> - <h4>Important Dates</h4> - <br> - <table> - <tr><td>Call for proposals start: 7th October 2013 - <tr><td>Call for proposals end: 2nd December 2013 - <tr><td>List of accepted proposals will be published: 6th December 2013 - </table> -</div> -</div> + <p>Thank you for your interest in proposing a session at the conference. We regret to inform that call for proposals has been closed for this year.</p> + <p>You may have a look at <a href="{% url 'website:accepted-abstracts'%}">Accepted Abstracts</a>. + <p>The <a href="{% url 'website:schedule'%}">Schedule</a> for the conference is also up. </p> </div> <!-- row --> {% endblock %} diff --git a/website/templates/register_2013.html b/website/templates/register_2013.html index 612ba63..621b364 100644 --- a/website/templates/register_2013.html +++ b/website/templates/register_2013.html @@ -5,17 +5,19 @@ <h3>Register</h3> <div class="row"> <div class="large-8 columns"> + <p>We have closed the online registration for the conference.</p> + <p>However, you can join the conference through spot registration.</p> <div class="reg"> <table> <th>Tickets</th> <th>Price</th> <tr> - <td>Regular Registration<sup>*</sup></td> - <td>INR 600</td> + <td>On spot Regular Registration<sup>*</sup></td> + <td>INR 700</td> </tr> <tr> - <td>Corporate Registration</td> - <td>INR 1000</td> + <td>On spot Corporate Registration</td> + <td>INR 1200</td> </tr> </table> </div> @@ -37,13 +39,10 @@ <div style="margin-left: 10px;"> <div class="clearfix"></div> - <a class="button small success" href="http://scipyindia2013.doattend.com/">Register</a> - <strong>for SciPy India 2013.</strong> - <br> <h5>Note:</h5> - <p>* Regular Registrants should bring any one of their college/institute identification cards during the event</p> - <p># Accommodation will be provided for 4 days starting from 12th to 15th of December</p> - <p>Registration closes on 10th December</p> + <ul> + <li>* Regular Registrants should bring any one of their college/institute identification cards during the event</li> + <li># For spot registrations, accommodation will be provided based on the availability. Accommodation will be for 4 days starting from 12th to 15th of December</li> </div> <!-- Modal test --> @@ -67,6 +66,12 @@ </a> </ul> </div> + <!--div class="row"> + <h6><u>For entering IIT Campus</u></h6> + <ul class="large-grid-2"> + If you are willing to join the conference through spot registration, get a copy of this letter along with you. You will have to present the letter in order to clear the security checks at the IIT gate. + </ul> + </div--> </div> </div> <!-- /row --> |