app/soc/models/work.py
changeset 329 2d90d49ce78a
parent 242 17984abf0c74
child 342 72482d8e5b34
equal deleted inserted replaced
328:275a47dd0ac8 329:2d90d49ce78a
    96   #    * logged-in User with a profile
    96   #    * logged-in User with a profile
    97   #    * logged-in Users, but no profile is necessary
    97   #    * logged-in Users, but no profile is necessary
    98   #    * anyone, even those not logged in
    98   #    * anyone, even those not logged in
    99   #  (and possibly others)
    99   #  (and possibly others)
   100 
   100 
       
   101   #: field storing whether a link to the Work should be featured in
       
   102   #: the sidebar menu (and possibly elsewhere); FAQs, Terms of Service,
       
   103   #: and the like are examples of "featured" Works
       
   104   is_featured = db.BooleanProperty(
       
   105       verbose_name=ugettext_lazy('Is Featured'))
       
   106   is_featured.help_text = ugettext_lazy(
       
   107       'Field used to indicate if a Work should be featured, for example,'
       
   108       ' in the sidebar menu.')