Я думаю, вы можете использовать это:
{% if request.user.is_superuser %}
<a href="#"> link only superusers can view </a>
{% else %}
<a href="#"> superuser can't view this link (anyone other than super user can view this link) </a>
{% endif %}
@ Обновление
Таким образом, в SUIT_CONFIG вы можете добавить пользователя как супер пользователя или не так, как показано ниже
{'label': 'Upload User Data', 'url': '/admin/user/bulk_user_update/', 'permissions': ('bulkupdate.access_user', 'user.superuser')},
Теперь нам нужно заблокировать html, если пользователь непосредственно вводит URL-адрес в браузере, так что для этого вы можете использовать шаблон, если еще условие, как показано @Sreevardhan, небольшое обновление там. Смотри ниже
{% block content %}
{% if not request.user.is_superuser %}
<div>Please raise a ticket for access</div>
{% else %}
<div>Please upload the file ....</div>
{% endif %}
{% endblock %}