Add top comments
Closed this issue · 0 comments
bitFez commented
- Add voting to comments
- Display comments in latest order
In post_detail view change the comment query too comments = post.comments.filter(active=True).order_by("-created_on")
- Display top 5 comments
comments = post.comments.filter(active=True).order_by("-created_on")[0:5] will fetch the latest 5 comments.