app/soc/models/site.py
changeset 1389 da41001a097e
parent 1308 35b75ffcbb37
child 1447 5e729070dc60
equal deleted inserted replaced
1388:237f4cf6936d 1389:da41001a097e
    50   #: Valid Google Maps API Key. Used to embed Google Maps.
    50   #: Valid Google Maps API Key. Used to embed Google Maps.
    51   gmaps_api_key = db.StringProperty(verbose_name=ugettext('Google Maps'))
    51   gmaps_api_key = db.StringProperty(verbose_name=ugettext('Google Maps'))
    52   gmaps_api_key.help_text = ugettext(
    52   gmaps_api_key.help_text = ugettext(
    53       'Valid Google Maps API Key. This key is used for '
    53       'Valid Google Maps API Key. This key is used for '
    54       'embedding Google Maps into the website.')
    54       'embedding Google Maps into the website.')
       
    55 
       
    56   #: No Reply Email address used for sending notification emails to site users 
       
    57   noreply_email = db.EmailProperty(verbose_name=ugettext('No reply email'))
       
    58   noreply_email.help_text = ugettext(
       
    59       'No reply email address is used for sending emails to site users. '
       
    60       'Email address provided in this field needs to be added as Developer '
       
    61       'in GAE admin console.')