app/soc/models/student_project.py
changeset 2122 b709f9d1566a
parent 1932 08fb1074b665
child 2124 ac484d0e4304
--- a/app/soc/models/student_project.py	Tue Apr 07 21:40:23 2009 +0000
+++ b/app/soc/models/student_project.py	Tue Apr 07 21:55:54 2009 +0000
@@ -52,6 +52,13 @@
   additional_info.help_text = ugettext(
       'Link to a resource containing more information about this project.')
 
+  #: Optional field storing a feed URL; displayed publicly.
+  feed_url = db.LinkProperty(
+      verbose_name=ugettext('Project Feed URL'))
+  feed_url.help_text = ugettext(
+      'The URL should be a valid ATOM or RSS feed. '
+      'Feed entries are shown on the home page.')
+
   #: A property containing which mentor has been assigned to this project.
   #: A project must have a mentor at all times
   mentor = db.ReferenceProperty(reference_class=soc.models.mentor.Mentor,