diff --git a/bookwyrm/templates/groups/group.html b/bookwyrm/templates/groups/group.html new file mode 100644 index 00000000..a8d65f7f --- /dev/null +++ b/bookwyrm/templates/groups/group.html @@ -0,0 +1,34 @@ +{% extends 'groups/layout.html' %} +{% load i18n %} +{% load bookwyrm_tags %} +{% load markdown %} + +{% block panel %} + +
+
+ {% if request.GET.updated %} +
+ {% trans "You successfully added a user to this group!" %} +
+ {% endif %} + + {% if not members.object_list.exists %} +

{% trans "This group has no members" %}

+ {% else %} +
    + {% for member in members %} +
  1. +
    +

    member.username

    +
    +
+ + {% endfor %} + + {% endif %} + {% include "snippets/pagination.html" with page=items %} + + + +{% endblock %}