app/soc/models/group.py
changeset 834 b60c9ccbeaa5
parent 789 e55cad180973
child 970 8b5611d5b053
equal deleted inserted replaced
833:1b9604b95eeb 834:b60c9ccbeaa5
   119   phone = db.PhoneNumberProperty(required=True,
   119   phone = db.PhoneNumberProperty(required=True,
   120       verbose_name=ugettext_lazy('Phone Number'))
   120       verbose_name=ugettext_lazy('Phone Number'))
   121   phone.help_text = ugettext_lazy(
   121   phone.help_text = ugettext_lazy(
   122       'include complete international calling number with country code')
   122       'include complete international calling number with country code')
   123 
   123 
   124   member_template = db.ReferenceProperty(
       
   125     reference_class=soc.models.document.Document, required=False,
       
   126     collection_name='group_app_member_template',
       
   127     verbose_name=ugettext_lazy('Application template '))
       
   128   member_template.help_text = ugettext_lazy(
       
   129     'This template will be presented to potential members when they'
       
   130     ' apply to the group.')
       
   131