bookwyrm/fedireads/templates/user_results.html
2020-03-21 14:29:39 -07:00

13 lines
281 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div class="content-container">
{% for result in results %}
<div>
<h2>{{ result.username }}</h2>
{% include 'snippets/follow_button.html' with user=result %}
</div>
{% endfor %}
</div>
{% endblock %}