diff --git a/openslides/participant/templates/participant/group_edit.html b/openslides/participant/templates/participant/group_edit.html index 3a34ed098..357a3e1a2 100644 --- a/openslides/participant/templates/participant/group_edit.html +++ b/openslides/participant/templates/participant/group_edit.html @@ -16,7 +16,7 @@ - + diff --git a/openslides/participant/views.py b/openslides/participant/views.py index acf57f618..35cacb025 100644 --- a/openslides/participant/views.py +++ b/openslides/participant/views.py @@ -174,7 +174,7 @@ def group_edit(request, group_id=None): try: group = Group.objects.get(id=group_id) except Group.DoesNotExist: - raise NameError("There is no Group %d" % group_id) + raise NameError("There is no group %d" % group_id) else: group = None