display reviewer name and basic review action

This commit is contained in:
dandds
2018-09-10 16:59:47 -04:00
parent c158e9fc35
commit 570d3b69f3
4 changed files with 17 additions and 4 deletions

View File

@@ -21,6 +21,10 @@ class RequestReview(Base):
fname_ccpo = Column(String)
lname_ccpo = Column(String)
@property
def full_name_reviewer(self):
return self.reviewer.full_name
@property
def full_name_mao(self):
return "{} {}".format(self.fname_mao, self.lname_mao)