# HG changeset patch # User Madhusudan.C.S # Date 1263476952 -19800 # Node ID cbe77a26e7a3dd418b81b2e694776e4eb8c94f39 # Parent 07b48746fe290fc09fe0092886a76efc1f4b5a40 Combined 2 authors fields in forms to a single author field. This will be taken care by jQuery on the UI side. diff -r 07b48746fe29 -r cbe77a26e7a3 project/kiwipycon/proceedings/forms.py --- a/project/kiwipycon/proceedings/forms.py Thu Jan 14 19:18:08 2010 +0530 +++ b/project/kiwipycon/proceedings/forms.py Thu Jan 14 19:19:12 2010 +0530 @@ -25,10 +25,6 @@ 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.')