app/soc/models/work.py
changeset 329 2d90d49ce78a
parent 242 17984abf0c74
child 342 72482d8e5b34
--- 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.')