bookwyrm/fedireads/templates/user_results.html

13 lines
281 B
HTML
Raw Normal View History

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