{% extends 'layout.html' %} {% block content %}
{% if not results %}

No results found for "{{ query }}"

{% endif %} {% for result in results %}

{{ result.username }}

{% include 'snippets/follow_button.html' with user=result %}
{% endfor %}
{% endblock %}