app/soc/models/review.py
changeset 533 ba3309b2fd30
parent 385 6d410bf49a82
child 1307 091a21cf3627
equal deleted inserted replaced
532:3a50bdfb75a9 533:ba3309b2fd30
    21   '"Sverre Rabbelier" <sverre@rabbelier.nl>',
    21   '"Sverre Rabbelier" <sverre@rabbelier.nl>',
    22 ]
    22 ]
    23 
    23 
    24 from google.appengine.ext import db
    24 from google.appengine.ext import db
    25 
    25 
       
    26 import soc.models.linkable
    26 # TODO: Uncomment when Survey model is committed
    27 # TODO: Uncomment when Survey model is committed
    27 #import soc.models.survey
    28 #import soc.models.survey
       
    29 import soc.models.reviewer
    28 import soc.models.work
    30 import soc.models.work
    29 import soc.models.reviewer
       
    30 
    31 
    31 
    32 
    32 class Review(db.Model):
    33 class Review(soc.models.linkable.Linkable):
    33   """Model of a review of a Proposal or a Task.
    34   """Model of a review of a Proposal or a Task.
    34 
    35 
    35   A Review entity is a specific instance of a completed Survey, collecting
    36   A Review entity is a specific instance of a completed Survey, collecting
    36   the Answers to the Questions that are found in that Survey.
    37   the Answers to the Questions that are found in that Survey.
    37 
    38