diff --git a/app/templates/views/notifications.html b/app/templates/views/notifications.html index 50a6b8be3..0f4743abf 100644 --- a/app/templates/views/notifications.html +++ b/app/templates/views/notifications.html @@ -14,11 +14,14 @@ {{ message_count_label(99, message_type, suffix='') | capitalize }} {% if not message_type == "letter" %} - {{ ajax_block( - partials, - url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status), - 'counts' - ) }} + + {% if current_user.has_permissions('view_activity') %} + {{ ajax_block( + partials, + url_for('.get_notifications_as_json', service_id=current_service.id, message_type=message_type, status=status), + 'counts' + ) }} + {% endif %}