From 0235fb9fe9bd79206aa0f0c5a5e7d5a5f879130e Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 14 Oct 2013 16:37:26 +0530 Subject: updating forms --- scipy/forms.py | 3 ++- scipy/templates/login.html | 4 ++-- website/templates/papers.html | 5 ++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/scipy/forms.py b/scipy/forms.py index 77c2b96..281e929 100644 --- a/scipy/forms.py +++ b/scipy/forms.py @@ -36,6 +36,7 @@ class DocumentUploadForm(forms.ModelForm): widgets = { 'title':forms.TextInput(attrs={'placeholder':'Title of your Talk'}), 'objective':forms.TextInput(attrs={'placeholder':'Objective of the talk'}), - 'abstract':forms.Textarea(attrs={'placeholder':'Abstract in 400 to 700 '}), + 'abstract':forms.Textarea(attrs={'placeholder':'Abstract in 400 to 700 words'}), + 'bio':forms.Textarea(attrs={'placeholder':'Tell us something about yourself in a few words'}), 'links':forms.TextInput(attrs={'placeholder':'Link to the code (if any) or relevant links'}), } diff --git a/scipy/templates/login.html b/scipy/templates/login.html index 31cdbdc..a9ba696 100644 --- a/scipy/templates/login.html +++ b/scipy/templates/login.html @@ -4,9 +4,9 @@
{% csrf_token %}

Please sign in

{{ form.as_p }} - +
-
Dont have an scipy account? Register Here.
+
Dont have an scipy account? Register Here.
{% endblock %} diff --git a/website/templates/papers.html b/website/templates/papers.html index 767132c..b1932f1 100644 --- a/website/templates/papers.html +++ b/website/templates/papers.html @@ -2,7 +2,10 @@ {% block content %}
{% if status == "up" %} -

We have succcessfully received your proposal. Thank You !

+
+

We have succcessfully received your proposal. Thank You !

+× +
{% endif %}

Call for Proposals

-- cgit