1
0
Fork 0
bookwyrm/bookwyrm/templates/groups/find_users.html

10 lines
254 B
HTML
Raw Normal View History

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