app/soc/models/presence.py
changeset 805 6aaf4c33db0b
parent 534 c31cfbf1a20f
child 936 b3e1e0c9649c
equal deleted inserted replaced
804:13fcbd8598a4 805:6aaf4c33db0b
    54   #: on the site page using Google's JavaScript blog widget  
    54   #: on the site page using Google's JavaScript blog widget  
    55   feed_url = db.LinkProperty(verbose_name=ugettext_lazy('Feed URL'))
    55   feed_url = db.LinkProperty(verbose_name=ugettext_lazy('Feed URL'))
    56   feed_url.help_text = ugettext_lazy(
    56   feed_url.help_text = ugettext_lazy(
    57       'The URL should be a valid ATOM or RSS feed. '
    57       'The URL should be a valid ATOM or RSS feed. '
    58       'Feed entries are shown on the home page.')
    58       'Feed entries are shown on the home page.')
       
    59 
       
    60   #: Reference to Document containing optional Terms of Service
       
    61   tos = db.ReferenceProperty(
       
    62     reference_class=soc.models.document.Document,
       
    63     verbose_name=ugettext_lazy('Terms of Service'),
       
    64     collection_name='tos')
       
    65   tos.help_text = ugettext_lazy(
       
    66       'Document containing optional Terms of Service for participating.')
       
    67