{% if query%}
{%for book in results%}
{%for author in book.authors%}
{%endfor%}
{%endfor%}
{%else%}
{%endif%}
When I run it.I got an error message:
'ManyRelatedManager' object is not iterable.
the solution for this is
change the for loop syntax to:
{%for author in book.authors.all%}
then it'll be done.