mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +00:00
24 lines
576 B
HTML
24 lines
576 B
HTML
|
{% extends "identity/view.html" %}
|
||
|
|
||
|
{% block title %}Search - {{ identity }}{% endblock %}
|
||
|
|
||
|
{% block subcontent %}
|
||
|
|
||
|
<form action="." method="post">
|
||
|
{% csrf_token %}
|
||
|
<fieldset>
|
||
|
{% include "forms/_field.html" with field=form.query %}
|
||
|
</fieldset>
|
||
|
<div class="buttons">
|
||
|
<button>Search</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
{% for post in results %}
|
||
|
{% include "activities/_post.html" %}
|
||
|
{% empty %}
|
||
|
<p class="empty">No posts were found that match your search.</p>
|
||
|
{% endfor %}
|
||
|
|
||
|
{% endblock %}
|