app/soc/models/student_proposal.py
changeset 1788 f7665077a54f
parent 1779 cdd11aa8dbc7
child 1837 27428cd5b98f
equal deleted inserted replaced
1787:b623d96bc830 1788:f7665077a54f
    46       verbose_name=ugettext('Title'))
    46       verbose_name=ugettext('Title'))
    47   title.help_text = ugettext('title of the proposal')
    47   title.help_text = ugettext('title of the proposal')
    48 
    48 
    49   #: required, text field used for different purposes,
    49   #: required, text field used for different purposes,
    50   #: depending on the specific type of the proposal
    50   #: depending on the specific type of the proposal
    51   abstract = db.StringProperty(required=True, multiline=True)
    51   abstract = db.TextProperty(required=True)
    52   abstract.help_text = ugettext(
    52   abstract.help_text = ugettext(
    53       'short abstract, summary, or snippet;'
    53       'short abstract, summary, or snippet;'
    54       ' 500 characters or less, plain text displayed publicly')
    54       ' 500 characters or less, plain text displayed publicly')
    55 
    55 
    56   #: Required field containing the content of the proposal.
    56   #: Required field containing the content of the proposal.