예제 #1
0
파일: courses.py 프로젝트: Yacent/LOVESYSU
 def get_comments(self):
     alist = []
     for i in self.cmtids:
         item = Comment.get_comment_by_cmtid(i)
         if item.status == 1:
             alist.append(item)
     alist = sorted(alist, key=lambda cmt : cmt.like-cmt.unlike, reverse=True)
     return alist
예제 #2
0
파일: courses.py 프로젝트: Yacent/LOVESYSU
 def get_all_comments(self):
     alist = []
     for i in self.cmtids:
         alist.append(Comment.get_comment_by_cmtid(i))
     return alist