mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
e0bd8200ad
Works on #78
12 lines
281 B
HTML
12 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 %}
|
|
|