{% extends 'layout.html' %} {% block content %}

User search results

{% if not results %}

No results found for "{{ query }}"

{% endif %} {% for result in results %} {{ result }}
{% 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 %}
{% endblock %}