app/soc/models/organization.py
changeset 1567 b5589e656ed1
parent 1408 2d91128c3685
child 1704 b581fdfd6bb1
equal deleted inserted replaced
1566:5388270fb363 1567:b5589e656ed1
    37   dev_mailing_list = db.StringProperty(required=False,
    37   dev_mailing_list = db.StringProperty(required=False,
    38     verbose_name=ugettext('Development Mailing List'))
    38     verbose_name=ugettext('Development Mailing List'))
    39   dev_mailing_list.help_text = ugettext(
    39   dev_mailing_list.help_text = ugettext(
    40     'Mailing list email address, URL to sign-up page, etc.')
    40     'Mailing list email address, URL to sign-up page, etc.')
    41 
    41 
    42   member_template = db.ReferenceProperty(
    42   contrib_template = db.TextProperty(required=False, verbose_name=ugettext(
    43     reference_class=soc.models.document.Document, required=False,
    43       'Application template'))
    44     collection_name='org_app_member_template',
    44   contrib_template.help_text = ugettext(
    45     verbose_name=ugettext('Application template'))
    45       'This template can be used by contributors, such as students'
    46   member_template.help_text = ugettext(
    46       ' and other non-member participants, when they apply to contribute'
    47     'This template will be presented to potential members when they'
    47       ' to the organization.')
    48     ' apply to the organization.')
       
    49 
    48 
    50   ideas = db.LinkProperty(required=False, verbose_name=ugettext('Idea list'))
    49   ideas = db.LinkProperty(required=False, verbose_name=ugettext('Idea list'))
    51   ideas.help_text = ugettext(
    50   ideas.help_text = ugettext(
    52       'The URL to the ideas list of your organization.')
    51       'The URL to the ideas list of your organization.')
    53   ideas.example_text = ugettext('For instance a link to a Melange public '
    52   ideas.example_text = ugettext('For instance a link to a Melange public '