app/soc/models/group.py
changeset 481 94834a1e6c01
parent 410 2af7f84f4fc7
child 512 aae25d2b4464
equal deleted inserted replaced
480:9b07ddeb1412 481:94834a1e6c01
    66   #: Required field storing a home page URL of the group.
    66   #: Required field storing a home page URL of the group.
    67   home_page = db.LinkProperty(required=True,
    67   home_page = db.LinkProperty(required=True,
    68       verbose_name=ugettext_lazy('Home Page URL'))
    68       verbose_name=ugettext_lazy('Home Page URL'))
    69   
    69   
    70   #: Required email address used as the "public" contact mechanism for
    70   #: Required email address used as the "public" contact mechanism for
    71   #: the Group (as opposed to the founder.id email address which is kept
    71   #: the Group (as opposed to the founder.account email address which is
    72   #: secret, revealed only to Developers).
    72   #: kept secret, revealed only to Developers).
    73   email = db.EmailProperty(required=True,
    73   email = db.EmailProperty(required=True,
    74       verbose_name=ugettext_lazy('Email'))  
    74       verbose_name=ugettext_lazy('Email'))  
    75   
    75   
    76   #: Required field storing description of the group.
    76   #: Required field storing description of the group.
    77   description = db.TextProperty(required=True,
    77   description = db.TextProperty(required=True,