summaryrefslogtreecommitdiffstats
path: root/templates/activities/search.html
blob: 84b2cc7382db1c0ad396dca87e67812ee5808aff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends "base.html" %}

{% block title %}Search{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            {% include "forms/_field.html" with field=form.query %}
        </fieldset>
        <div class="buttons">
            <button>Search</button>
        </div>
    </form>
    {% if results.identities %}
        <h2>People</h2>
        {% for identity in results.identities %}
            {% include "activities/_identity.html" %}
        {% endfor %}
    {% endif %}
    {% if results.hashtags %}
        <h2>Hashtags</h2>
        <section class="icon-menu">
        {% for hashtag in results.hashtags %}
            {% include "activities/_hashtag.html" with hide_stats=True %}
        {% endfor %}
        </section>
    {% endif %}
    {% if results and not results.identities and not results.hashtags %}
        <h2>No results (yet)</h2>
        <p>No results found — not yet, at least. The search swamphens are still
           rooting around behind the scenes and may yet turn something up. If you try your search
           again after a moment, you might get lucky!</p>
    {% endif %}
{% endblock %}