diff options
author | Madhusudan.C.S | 2010-07-13 17:59:47 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-07-13 17:59:47 +0530 |
commit | e9ed5af643f96f92f2a9e97c3b751efff8727b6d (patch) | |
tree | 95df3b99b6bc3afe90dab26158bd056a82eaf20f /project/kiwipycon/proceedings/forms.py | |
parent | f245bcffa2d4bd4efc6ab934db85eb76626ec599 (diff) | |
download | scipycon-e9ed5af643f96f92f2a9e97c3b751efff8727b6d.tar.gz scipycon-e9ed5af643f96f92f2a9e97c3b751efff8727b6d.tar.bz2 scipycon-e9ed5af643f96f92f2a9e97c3b751efff8727b6d.zip |
Moved the files to new Django app named scipycon and modified settings.
Diffstat (limited to 'project/kiwipycon/proceedings/forms.py')
-rw-r--r-- | project/kiwipycon/proceedings/forms.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/project/kiwipycon/proceedings/forms.py b/project/kiwipycon/proceedings/forms.py deleted file mode 100644 index ddff13c..0000000 --- a/project/kiwipycon/proceedings/forms.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- - -from django import forms - - -class ProceedingsForm(forms.Form): - """Form for proceedings. - """ - - title = forms.CharField(required=True, label=u'Title', - widget=forms.TextInput(attrs={'size':'70'})) - - abstract = forms.CharField( - widget=forms.Textarea(attrs={'cols': '80', 'rows': '8'}), - required=True, label=u'Abstract', - help_text=u'Upto 200 words. Content must strictly be in reSt format.') - - body = forms.CharField( - widget=forms.Textarea(attrs={'cols': '80', 'rows': '25'}), - required=False, label=u'Body', help_text=u'Approximately 7 pages. ' - 'Content must strictly be in reSt format.') - - rst_file = forms.FileField( - required=False, label=u'reStructuredText file', - help_text=u'The file should contain two sections, one with a heading ' - "'Abstract' and other with a heading 'Body'.") - - authors = forms.CharField( - required=False, label=u'Author(s)', - help_text=u'Comma separated list of User ID of the author(s).') |