coned
This commit is contained in:
parent
759c0c8cce
commit
14c568dd3d
2 changed files with 12 additions and 4 deletions
|
@ -86,12 +86,16 @@ class Comment(Base):
|
|||
@property
|
||||
@lazy
|
||||
def options(self):
|
||||
return [x for x in self.child_comments if x.author_id == AUTOPOLLER_ID]
|
||||
li = [x for x in self.child_comments if x.author_id == AUTOPOLLER_ID]
|
||||
return sorted(li, key=lambda x: x.id)
|
||||
|
||||
|
||||
@property
|
||||
@lazy
|
||||
def choices(self):
|
||||
return [x for x in self.child_comments if x.author_id == AUTOCHOICE_ID]
|
||||
li = [x for x in self.child_comments if x.author_id == AUTOCHOICE_ID]
|
||||
return sorted(li, key=lambda x: x.id)
|
||||
|
||||
|
||||
def total_poll_voted(self, v):
|
||||
if v:
|
||||
|
|
|
@ -88,12 +88,16 @@ class Submission(Base):
|
|||
@property
|
||||
@lazy
|
||||
def options(self):
|
||||
return g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOPOLLER_ID, level=1)
|
||||
li = g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOPOLLER_ID, level=1)
|
||||
return sorted(li, key=lambda x: x.id)
|
||||
|
||||
|
||||
@property
|
||||
@lazy
|
||||
def choices(self):
|
||||
return g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOCHOICE_ID, level=1)
|
||||
li = g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOCHOICE_ID, level=1)
|
||||
return sorted(li, key=lambda x: x.id)
|
||||
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue