Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goutomroy/7c51b114819fa1349fd46e0bebc2ec9b to your computer and use it in GitHub Desktop.
Save goutomroy/7c51b114819fa1349fd46e0bebc2ec9b to your computer and use it in GitHub Desktop.
q = Entry.objects.filter(blog=2).exclude(body_text__icontains="food")
q1 = Entry.objects.filter(blog=2)
q2 = q1.exclude(body_text__icontains="food")
q3 = q2[:10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment