Very often it happens to deal with models which have something like a published field. Such kind of fields are almost always used when retrieving objects, so that you will find yourself to write something like:
my_news = News.objects.filter(published=True)
too many times. You can use custom mana...