{% extends 'website/templates/base.html' %} {% load widget_tweaks %} {% block sidebar %} {% endblock %} {% block current %} Call for Proposals {% endblock %} {% block content %}

We look forward to submissions for presentations at SciPy India 2014. Please submit an abstract of 300 to 500 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 Pecha Kucha style talk.

If you wish to present a talk at the conference, please follow the guidelines below.

Submission Guidelines

Important Dates

Call for proposals ends To be announced.
List of accepted proposals will be published To be announced.
{% if not request.user.is_authenticated %}
{% csrf_token %}
{% render_field login_form.username class+="form-control" %}
{% render_field login_form.password class+="form-control" %}
{% csrf_token %}
{% render_field register_form.first_name class+="form-control" %}
{% render_field register_form.last_name class+="form-control" %}
{% render_field register_form.email class+="form-control" %}
{% render_field register_form.username class+="form-control" %}
{% render_field register_form.password1 class+="form-control" %}
{% render_field register_form.password2 class+="form-control" %}
{% else %}
Hello {{ request.user }}! Logout {% if proposal_form %}

Proposal Form{% if edit %} — Edit{% endif %}

{% csrf_token %}
(Please enter your proposal title) {% render_field proposal_form.title class+="form-control" %} {{ proposal_form.title.errors }}
(Please enter your proposal objective) {% render_field proposal_form.objective class+="form-control" %} {{ proposal_form.objective.errors }}
(Proposal abstract) {% render_field proposal_form.abstract class+="form-control" %} {{ proposal_form.abstract.errors }}
(Your professional bio/designation etc.) {% render_field proposal_form.bio class+="form-control" %} {{ proposal_form.bio.errors }}
([.pdf] of complete proposal) {% if edit%}
{% endif %} {% render_field proposal_form.attachment class+="form-control" %} {{ proposal_form.attachment.errors }}
{% if edit%} Cancel {% endif %}
{% endif %} {% if proposal %}
Your Proposal is Under Review
Title

{{ proposal.title }}

Objective

{{ proposal.objective }}

Abstract

{{ proposal.abstract }}

Bio

{{ proposal.bio }}

Attachment

View Attachment

{% endif %}
{% endif %}
{% endblock %}