diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/models.py | 8 | ||||
-rw-r--r-- | website/static/img/favicon.ico | bin | 0 -> 15402 bytes | |||
-rw-r--r-- | website/templates/papers.html | 9 |
3 files changed, 11 insertions, 6 deletions
diff --git a/website/models.py b/website/models.py index b95e81a..158c073 100644 --- a/website/models.py +++ b/website/models.py @@ -9,5 +9,11 @@ def get_presentation_dir(instance, filename): class Paper(models.Model): user = models.ForeignKey(User) - document = models.FileField(upload_to=get_document_dir) + title = models.CharField(max_length=250) + affiliation = models.CharField(max_length=250) + objective = models.CharField(max_length=512) + abstract = models.TextField(max_length=700) + bio = models.TextField(max_length=500) + links = models.CharField(max_length=128) + attachments = models.FileField(upload_to=get_document_dir) verified = models.NullBooleanField() diff --git a/website/static/img/favicon.ico b/website/static/img/favicon.ico Binary files differnew file mode 100644 index 0000000..aae1ff6 --- /dev/null +++ b/website/static/img/favicon.ico diff --git a/website/templates/papers.html b/website/templates/papers.html index 7f8d9a2..11cc23d 100644 --- a/website/templates/papers.html +++ b/website/templates/papers.html @@ -2,14 +2,13 @@ {% block content %} <div class="row"> {% if status == "up" %} -<h4>Document uploaded succcessfully. </h4> +<h4>We have succcessfully received your proposal. Thank You !</h4> {% endif %} <h4>Call for Proposals</h4> <p align="justify"> - 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 + 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> |