app/soc/models/program.py
changeset 1057 75f72ea26883
parent 1053 3b9552cf748a
child 1107 a878188e225c
equal deleted inserted replaced
1056:d0c82bdc2de2 1057:75f72ea26883
   102 
   102 
   103   #: Whether the program is enabled
   103   #: Whether the program is enabled
   104   is_enabled = db.BooleanProperty(default=False,
   104   is_enabled = db.BooleanProperty(default=False,
   105       verbose_name=ugettext('Is Enabled'))
   105       verbose_name=ugettext('Is Enabled'))
   106   is_enabled.help_text = ugettext(
   106   is_enabled.help_text = ugettext(
   107       'Field used to indicate if a Presence is enabled at all, and as such'
   107       'Field used to indicate if a Program is enabled at all, and as such'
   108       '  accessible to non-developers.')
   108       '  accessible to non-developers.')
   109 
   109 
   110   #: Whether the program is enabled
   110   #: Whether the slots allocations are visible
   111   allocations_visible = db.BooleanProperty(default=False,
   111   allocations_visible = db.BooleanProperty(default=False,
   112       verbose_name=ugettext('Slot allocations visible'))
   112       verbose_name=ugettext('Slot allocations visible'))
   113   allocations_visible.help_text = ugettext(
   113   allocations_visible.help_text = ugettext(
   114       'Field used to indicate if the slot allocations should be visible.')
   114       'Field used to indicate if the slot allocations should be visible.')