How can I filter questions by title/name?
I'm trying to find an exact question in the django console but I can't guess how.
I've done the following:
from askbot.models import Post
questions = Post.objects.get_questions()
Now, how to filter them by title?
Comments