project/kiwipycon/proceedings/forms.py
changeset 86 cbe77a26e7a3
parent 84 d01c62c2a628
child 93 7c27e8d9231d
child 94 e86755df35da
equal deleted inserted replaced
85:07b48746fe29 86:cbe77a26e7a3
    23     rst_file = forms.FileField(
    23     rst_file = forms.FileField(
    24         required=False, label=u'reStructuredText file',
    24         required=False, label=u'reStructuredText file',
    25         help_text=u'The file should contain two sections, one with a heading '
    25         help_text=u'The file should contain two sections, one with a heading '
    26         "'Abstract' and other with a heading 'Body'.")
    26         "'Abstract' and other with a heading 'Body'.")
    27 
    27 
    28     self_author = forms.BooleanField(
    28     authors = forms.CharField(
    29         required=False, label=u'Author(yourself)',
    29         required=False, label=u'Author',
    30         help_text=u'Check the field if you are one of the authors')
    30         help_text=u'User ID of the author.')
    31 
       
    32     additional_authors = forms.CharField(
       
    33         required=False, label=u'Additional Author(s)',
       
    34         help_text=u'User ID of each additional author separated by comma.')