1
0
Fork 0
bookwyrm/fedireads/templates/user_results.html

13 lines
281 B
HTML
Raw Normal View History

2020-01-27 21:31:34 -08:00
{% extends 'layout.html' %}
{% block content %}
<div class="content-container">
2020-01-27 21:31:34 -08:00
{% for result in results %}
2020-01-29 11:45:19 -08:00
<div>
<h2>{{ result.username }}</h2>
2020-02-22 12:57:13 -08:00
{% include 'snippets/follow_button.html' with user=result %}
2020-01-29 11:45:19 -08:00
</div>
2020-01-27 21:31:34 -08:00
{% endfor %}
</div>
{% endblock %}