app/soc/models/group_app.py
changeset 795 8914adaa93a7
parent 789 e55cad180973
child 881 1ad41c8d05e9
equal deleted inserted replaced
794:19c24508c398 795:8914adaa93a7
    72   why_applying = db.TextProperty(required=True,
    72   why_applying = db.TextProperty(required=True,
    73     verbose_name=ugettext_lazy(
    73     verbose_name=ugettext_lazy(
    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   prior_participation = db.TextProperty(required=False,
       
    78     verbose_name=ugettext_lazy(
       
    79       'Has your group participated previously?'
       
    80       ' If so, please summarize your involvement and any past successes'
       
    81       ' and failures.'))
       
    82 
       
    83   prior_application = db.TextProperty(required=False,
       
    84     verbose_name=ugettext_lazy(
       
    85       'If your group has not previously participated, have you applied in'
       
    86       ' the past?  If so, for what sort of participation?'))
       
    87 
       
    88   pub_mailing_list = db.StringProperty(required=False,
    77   pub_mailing_list = db.StringProperty(required=False,
    89     verbose_name=ugettext_lazy(
    78     verbose_name=ugettext_lazy(
    90       'What is the main public mailing list for your group?'))
    79       'What is the main public mailing list for your group?'))
    91   pub_mailing_list.help_text = ugettext_lazy(
    80   pub_mailing_list.help_text = ugettext_lazy(
    92     'Mailing list email address, URL to sign-up page, etc.')
    81     'Mailing list email address, URL to sign-up page, etc.')
   105     verbose_name=ugettext_lazy(
    94     verbose_name=ugettext_lazy(
   106       'What criteria do you use to select the members of your group?'
    95       'What criteria do you use to select the members of your group?'
   107       ' Please be as specific as possible.'))
    96       ' Please be as specific as possible.'))
   108   member_criteria.help_text = ugettext_lazy(
    97   member_criteria.help_text = ugettext_lazy(
   109     'Members include mentors, admininstrators, and the like.')
    98     'Members include mentors, admininstrators, and the like.')
       
    99   
       
   100   # boolean to indicate if an application has been reviewed
       
   101   reviewed = db.BooleanProperty(required=True, default=False,
       
   102       verbose_name=ugettext_lazy('Has been reviewed')
       
   103       )
       
   104   # boolean to indicate if an application has been accepted
       
   105   accepted = db.BooleanProperty(required=True, default=False,
       
   106       verbose_name=ugettext_lazy('Has been accepted')
       
   107       )
       
   108   
       
   109   # boolean to indicate that this application has been
       
   110   # handled and turned into a group
       
   111   application_completed = db.BooleanProperty(required=True, default=False,
       
   112       verbose_name=ugettext_lazy('Has been completed'))