{% extends 'layout.html' %} {% block content %} {% with book_results|first as local_results %}

Matching Books

{% if not local_results.results %}

No books found for "{{ query }}"

{% else %} {% endif %}
{% if book_results|slice:":1" and local_results.results and request.user.is_authenticated %}

Didn't find what you were looking for?

{% 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 %}
{% endwith %} {% endblock %}