Skip to content

Commit 8dabf4c

Browse files
committed
Fix bug in displaying charter new group links
- Legacy-Id: 7563
1 parent 135a4af commit 8dabf4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def chartering_groups(request):
186186

187187
for t in group_types:
188188
t.chartering_groups = Group.objects.filter(type=t, charter__states__in=charter_states).select_related("state", "charter")
189-
t.can_manage = can_manage_group_type(request.user, t)
189+
t.can_manage = can_manage_group_type(request.user, t.slug)
190190

191191
for g in t.chartering_groups:
192192
g.chartering_type = get_chartering_type(g.charter)

0 commit comments

Comments
 (0)