bookwyrm-mastodon/bookwyrm/templates/groups/find_users.html

10 lines
254 B
HTML
Raw Normal View History

{% extends 'groups/group.html' %}
2021-10-15 17:18:55 -04:00
{% load i18n %}
{% block searchresults %}
2021-10-04 07:20:02 -04:00
<h2 class="title is-5">
2021-10-15 17:18:55 -04:00
{% trans "Add new members!" %}
2021-10-04 07:20:02 -04:00
</h2>
{% include 'groups/suggested_users.html' with suggested_users=suggested_users %}
2021-10-05 06:48:59 -04:00
{% endblock %}