Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @register.simple_tag
  2. def get_most_commented_posts(count=5):
  3. return Post.objects.filter(status="published", publish__lte=timezone.now(), publish__gte=timezone.now()-
  4. datetime.timedelta(days=1)).annotate(total_comments=Count("comments")).order_by("-comments")[1:count]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement