app/soc/models/group_app.py
changeset 1562 0e1a93e0c54d
parent 1544 5d23f0160fcd
child 1629 9ef5ff7a6d8f
equal deleted inserted replaced
1561:fe1b141bfc2c 1562:0e1a93e0c54d
    72   why_applying = db.TextProperty(required=True,
    72   why_applying = db.TextProperty(required=True,
    73     verbose_name=ugettext(
    73     verbose_name=ugettext(
    74       'Why is your group applying to participate?'
    74       'Why is your group applying to participate?'
    75       ' What do you hope to gain by participating?'))
    75       ' What do you hope to gain by participating?'))
    76 
    76 
    77   pub_mailing_list = db.StringProperty(required=False,
    77   pub_mailing_list = db.StringProperty(required=True,
    78     verbose_name=ugettext(
    78     verbose_name=ugettext(
    79       'What is the main public mailing list for your group?'))
    79       'What is the main public mailing list for your group?'))
    80   pub_mailing_list.help_text = ugettext(
    80   pub_mailing_list.help_text = ugettext(
    81     'Mailing list email address, URL to sign-up page, etc.')
    81     'Mailing list email address, URL to sign-up page, etc. If a mailing '
       
    82     'list is not used please specify another method of communication used '
       
    83     'within the group.')
    82 
    84 
    83   irc_channel = db.StringProperty(required=False,
    85   irc_channel = db.StringProperty(required=True,
    84     verbose_name=ugettext(
    86     verbose_name=ugettext(
    85       'Where is the main IRC channel for your group?'))
    87       'Where is the main IRC channel for your group?'))
    86   irc_channel.help_text = ugettext('IRC network and channel.')
    88   irc_channel.help_text = ugettext('IRC network and channel. If IRC is '
       
    89       'not used please write something like not applicable.')
    87 
    90 
    88   backup_admin = db.ReferenceProperty(reference_class=soc.models.user.User,
    91   backup_admin = db.ReferenceProperty(reference_class=soc.models.user.User,
    89     required=False, collection_name='group_app_backup_admin',
    92     required=False, collection_name='group_app_backup_admin',
    90     verbose_name=ugettext(
    93     verbose_name=ugettext(
    91       'Please select your backup group administrator.'))
    94       'Please select your backup group administrator.'))