app/soc/models/comment.py
changeset 1874 35b65c11d6a1
parent 1711 654c4fb617ea
child 2074 5c75312566d5
equal deleted inserted replaced
1873:bbd4fa245285 1874:35b65c11d6a1
    48 
    48 
    49   #: The rich textual content of this comment
    49   #: The rich textual content of this comment
    50   content = db.TextProperty(verbose_name=_('Content'))
    50   content = db.TextProperty(verbose_name=_('Content'))
    51 
    51 
    52   #: Indicated if the comment should be visible to the appropriate student
    52   #: Indicated if the comment should be visible to the appropriate student
    53   is_public = db.BooleanProperty(
    53   is_public = db.BooleanProperty(verbose_name=_('Public comment'))
    54     verbose_name=_('Public comment'))
       
    55 
    54 
    56   #: Date when the comment was added
    55   #: Date when the comment was added
    57   created = db.DateTimeProperty(auto_now_add=True)
    56   created = db.DateTimeProperty(auto_now_add=True)
    58 
    57 
    59   #: date when the work was last modified
    58   #: date when the work was last modified