I am new to Django and trying to pass an author\'s name to a view and filter out quote objects based on the author\'s name. here are the codes:
models.py
<
aquotelist = Quote.objects.filter(author__author_name__exact = name)
Try changing the corresponding line to the above. The way you have it now, you are matching author to the given name, but author is probably considered by its ID here, definitely not by its author_name. The format is as follows:
Quote.objects.filter([model]__[field]__exact = [whatever])