diff --git a/kitsune/dashboards/jinja2/dashboards/includes/announcement_list.html b/kitsune/dashboards/jinja2/dashboards/includes/announcement_list.html
index cb8e5bde2aa..be9f9bbeb0c 100644
--- a/kitsune/dashboards/jinja2/dashboards/includes/announcement_list.html
+++ b/kitsune/dashboards/jinja2/dashboards/includes/announcement_list.html
@@ -1,11 +1,11 @@
-{% if in_staff_group(user) and user.has_perm('announcements.add_announcement') %}
+{% if user.is_staff and user.has_perm('announcements.add_announcement') %}
{{ _('Add announcement') }}
{% endif %}
{% if announcements %}
{% for a in announcements %}
-
- {% if in_staff_group(user) and user.has_perm('announcements.change_announcement') %}
+ {% if user.is_staff and user.has_perm('announcements.change_announcement') %}
{{ _('Edit') }}
{% endif %}
{{ a.content|wiki_to_html }}
diff --git a/kitsune/flagit/jinja2/flagit/includes/flagged_profile.html b/kitsune/flagit/jinja2/flagit/includes/flagged_profile.html
index e3759f41ef2..8bd24b30fe6 100644
--- a/kitsune/flagit/jinja2/flagit/includes/flagged_profile.html
+++ b/kitsune/flagit/jinja2/flagit/includes/flagged_profile.html
@@ -11,7 +11,7 @@
{{ _('Flagged:') }}
{{ _('Take Action:') }}
diff --git a/kitsune/groups/jinja2/groups/list.html b/kitsune/groups/jinja2/groups/list.html
index 4f05c8e04f7..cc8a240a3f6 100644
--- a/kitsune/groups/jinja2/groups/list.html
+++ b/kitsune/groups/jinja2/groups/list.html
@@ -3,7 +3,7 @@
{% block content %}
- {% if in_staff_group(user) and user.has_perm('groups.add_groupprofile') %}
+ {% if user.is_staff and user.has_perm('groups.add_groupprofile') %}
diff --git a/kitsune/groups/jinja2/groups/profile.html b/kitsune/groups/jinja2/groups/profile.html
index f8740c48aeb..4436037deb0 100755
--- a/kitsune/groups/jinja2/groups/profile.html
+++ b/kitsune/groups/jinja2/groups/profile.html
@@ -14,7 +14,7 @@
{% endif %}
- {% if in_staff_group(user) and user.has_perm('groups.change_groupprofile') %}
+ {% if user.is_staff and user.has_perm('groups.change_groupprofile') %}
{{ _('Edit in admin') }}
{% endif %}
{{ profile.group.name }}