app/soc/models/program.py
changeset 1052 cd6d6034b6e9
parent 1051 c532dd9def48
child 1053 3b9552cf748a
equal deleted inserted replaced
1051:c532dd9def48 1052:cd6d6034b6e9
   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 Presence is enabled at all, and as such'
   108       '  accessible to non-developers.')
   108       '  accessible to non-developers.')
       
   109 
       
   110   #: Whether the program is enabled
       
   111   allocations_visible = db.BooleanProperty(default=False,
       
   112       verbose_name=ugettext('Slot allocations visible'))
       
   113   allocations_visible.help_text = ugettext(
       
   114       'Field used to indicate if the slot allocations should be visible.')