app/soc/models/user.py
changeset 811 9e56019eb218
parent 549 00a9ce3dc082
child 936 b3e1e0c9649c
equal deleted inserted replaced
810:208659644a7f 811:9e56019eb218
    87   is_developer = db.BooleanProperty(
    87   is_developer = db.BooleanProperty(
    88       verbose_name=ugettext_lazy('Is Developer'))
    88       verbose_name=ugettext_lazy('Is Developer'))
    89   is_developer.help_text = ugettext_lazy(
    89   is_developer.help_text = ugettext_lazy(
    90       'Field used to indicate user with site-wide Developer access.')
    90       'Field used to indicate user with site-wide Developer access.')
    91 
    91 
       
    92   #: field storing whether User has agreed to the site-wide Terms of Service.
       
    93   #: (Not a required field because the Terms of Service might not be present
       
    94   #: when the first User profile is created when bootstrapping the site.)
       
    95   agrees_to_tos = db.BooleanProperty(
       
    96       verbose_name=ugettext_lazy('Agrees to ToS'))
       
    97   agrees_to_tos.help_text = ugettext_lazy(
       
    98       'Indicates that the user agrees to the site-wide Terms of Service.')
       
    99