diff options
author | Madhusudan.C.S | 2010-01-14 19:19:12 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-01-14 19:19:12 +0530 |
commit | bcfeb961869c71e1bb8c2b0e8a5b15008f4b05c0 (patch) | |
tree | 9ff9149e5d391dd4bd7462414ad5234858b22cdd | |
parent | 43cd057a34710c1650c624653f86d4e980c2ba14 (diff) | |
download | scipycon-bcfeb961869c71e1bb8c2b0e8a5b15008f4b05c0.tar.gz scipycon-bcfeb961869c71e1bb8c2b0e8a5b15008f4b05c0.tar.bz2 scipycon-bcfeb961869c71e1bb8c2b0e8a5b15008f4b05c0.zip |
Combined 2 authors fields in forms to a single author field. This will be taken care by jQuery on the UI side.
-rw-r--r-- | project/kiwipycon/proceedings/forms.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/project/kiwipycon/proceedings/forms.py b/project/kiwipycon/proceedings/forms.py index 0104057..df9d59b 100644 --- a/project/kiwipycon/proceedings/forms.py +++ b/project/kiwipycon/proceedings/forms.py @@ -25,10 +25,6 @@ class ProceedingsForm(forms.Form): help_text=u'The file should contain two sections, one with a heading ' "'Abstract' and other with a heading 'Body'.") - self_author = forms.BooleanField( - required=False, label=u'Author(yourself)', - help_text=u'Check the field if you are one of the authors') - - additional_authors = forms.CharField( - required=False, label=u'Additional Author(s)', - help_text=u'User ID of each additional author separated by comma.') + authors = forms.CharField( + required=False, label=u'Author', + help_text=u'User ID of the author.') |