2022-11-18 01:52:00 +00:00
|
|
|
{% 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 %}
|
2022-11-29 04:41:36 +00:00
|
|
|
{% 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 %}
|
2022-11-18 01:52:00 +00:00
|
|
|
{% endblock %}
|