We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 15ca79c + 4f72923 commit 9d244edCopy full SHA for 9d244ed
1 file changed
junction/proposals/models.py
@@ -292,6 +292,9 @@ class ProposalComment(TimeAuditModel):
292
choices=ProposalCommentType.CHOICES, default=ProposalCommentType.GENERAL)
293
objects = ProposalCommentQuerySet.as_manager()
294
295
+ class Meta:
296
+ ordering = ('created_at', )
297
+
298
def __str__(self):
299
return "[{} by {}] {}".format(self.comment,
300
self.commenter.get_full_name(),
0 commit comments