{% extends "base.html" %} {% block title %}Search{% endblock %} {% block content %}
{% csrf_token %}
{% include "forms/_field.html" with field=form.query %}
{% if results.identities %}

People

{% for identity in results.identities %} {% include "activities/_identity.html" %} {% endfor %} {% endif %} {% if results.posts %}

Posts

{% for post in results.posts %} {% include "activities/_post.html" %} {% endfor %}
{% endif %} {% if results.hashtags %}

Hashtags

{% for hashtag in results.hashtags %} {% include "activities/_hashtag.html" with hide_stats=True %} {% endfor %}
{% endif %} {% if results and not results.identities and not results.hashtags and not results.posts %}

No results

We could not find anything matching your query.

If you're trying to find a post or profile on another server, try again in a few moments - if the other end is overloaded, it can take some time to fetch the details.

{% endif %} {% endblock %}