diff --git a/bookwyrm/models/group.py b/bookwyrm/models/group.py index 6810779c..4d9d2815 100644 --- a/bookwyrm/models/group.py +++ b/bookwyrm/models/group.py @@ -24,6 +24,10 @@ class Group(BookWyrmModel): related_name="members" ) + def get_remote_id(self): + """don't want the user to be in there in this case""" + return f"https://{DOMAIN}/group/{self.id}" + class GroupMember(models.Model): """Users who are members of a group""" diff --git a/bookwyrm/templates/groups/group.html b/bookwyrm/templates/groups/group.html index abb24143..6c44e3b4 100644 --- a/bookwyrm/templates/groups/group.html +++ b/bookwyrm/templates/groups/group.html @@ -15,49 +15,47 @@
{% trans "This group has no lists" %}
{% else %} -- {% include 'lists/created_text.html' with list=list %} -
-+ {% include 'lists/created_text.html' with list=list %} +
+