diff -r 275a47dd0ac8 -r 2d90d49ce78a app/soc/models/work.py --- a/app/soc/models/work.py Tue Oct 14 21:33:57 2008 +0000 +++ b/app/soc/models/work.py Tue Oct 14 21:39:57 2008 +0000 @@ -98,3 +98,11 @@ # * anyone, even those not logged in # (and possibly others) + #: field storing whether a link to the Work should be featured in + #: the sidebar menu (and possibly elsewhere); FAQs, Terms of Service, + #: and the like are examples of "featured" Works + is_featured = db.BooleanProperty( + verbose_name=ugettext_lazy('Is Featured')) + is_featured.help_text = ugettext_lazy( + 'Field used to indicate if a Work should be featured, for example,' + ' in the sidebar menu.')