{% load custom_tags_and_filters %}
Only qualified users are able to operate the {{ tool.name }}.
{% if tool.grant_physical_access_level_upon_qualification %}Qualifying a user for this tool automatically grants them the physical access level "{{ tool.grant_physical_access_level_upon_qualification }}".
{% endif %} {% with tool.user_set.all as qualified_users %} {% if qualified_users %}You can email all qualified users.
Current qualified users are listed below. Inactive qualified users are crossed out.
{% for u in qualified_users %}
{% if u.is_active %}
{{ u }}
{% else %}
{{ u }}
{% endif %}
{% endfor %}