moviewyrm/bookwyrm/templates/groups/find_users.html

10 lines
254 B
HTML
Raw Normal View History

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