def __str__(self):
display_name = self.person.fullname()
party = self.political_party() # do not use the cached_property here because this might fail tests during creation phase
if party:
display_name += ' (' + str(party.name_short) + ')'
return display_name
评论列表
文章目录