diff -r cba50e22ff6b -r ba32a4f5716b app/soc/models/work.py --- a/app/soc/models/work.py Mon Jul 06 13:19:00 2009 +0200 +++ b/app/soc/models/work.py Mon Jul 06 14:58:46 2009 +0200 @@ -67,13 +67,13 @@ #: The content is only to be displayed to Persons in Roles eligible to #: view them (which may be anyone, for example, with the site front page). content = db.TextProperty(verbose_name=ugettext('Content')) - + #: date when the work was created created = db.DateTimeProperty(auto_now_add=True) - + #: date when the work was last modified modified = db.DateTimeProperty(auto_now=True) - + # indicating wich user last modified the work. Used in displaying Work modified_by = db.ReferenceProperty(reference_class=soc.models.user.User, required=True,