From 53557f5e7b28cb362502492983bee4a84a2003d6 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 10 Jan 2011 16:52:52 +0000 Subject: [PATCH] Don't allow fixed groups to be admined --- templates/groups/group_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/groups/group_list.html b/templates/groups/group_list.html index 3c8b3b3..a5bb8f2 100644 --- a/templates/groups/group_list.html +++ b/templates/groups/group_list.html @@ -14,7 +14,7 @@ {% if status %}{{ status }}{% endif %} {% ifequal status None %}{% if requestable %}Request Membership{% endif %}{% endifequal %} {% if not fixed and status %}Leave {% endif %} - {% if status == 'Admin' or request.user.is_superuser %}Admin{% endif %} + {% if status == 'Admin' or request.user.is_superuser %}{% if not fixed %}Admin{% endif %}{% endif %} {% endfor %}