Matching Books
{% for result_set in book_results %}
{% if result_set.results %}
{% if not result_set.connector.local %}
{% endif %}
{% for result in result_set.results %}
{% endfor %}
{% endif %}
{% endfor %}
{% if not book_results %}
No books found for "{{ query }}"
{% endif %}
Matching Users
{% if not user_results %}
No users found for "{{ query }}"
{% endif %}
{% for result in user_results %}
{% include 'snippets/avatar.html' with user=result %}
{% include 'snippets/username.html' with user=result show_full=True %}
{% include 'snippets/follow_button.html' with user=result %}
{% endfor %}