{% extends "full_layout.html" %} {% import "macros/ordering.html" as ordering_macros %} {% import "macros/status.html" as status_macros %} {% block title %}Users{% endblock %} {% block subnav_header %} Users {% endblock %} {% block subnav_items %} {% with url_params = {"resource_group_id": request.args.get("resource_group_id"), "tag_id": request.args.get("tag_id"), "token_size_violation": request.args.get("token_size_violation"), "expire_soon": request.args.get("expire_soon") }%}
{% endwith %} {% endblock %} {% block content %}| {{ ordering_macros.ordering_header("First Name", ordering.links["given_name"]) }} | {{ ordering_macros.ordering_header("Last Name", ordering.links["family_name"]) }} | {{ ordering_macros.ordering_header("Email", ordering.links["email"]) }} | Product | Account Status | VIP |
|---|---|---|---|---|---|
| {{ account.given_name|default("N/A", True) }} | {{ account.family_name|default("N/A", True) }} |
{{ account.email }}
{% if account.is_external %}
EXTERNAL
{% endif %}
{% if account.no_mfa %}
NO MFA
{% endif %}
|
{% if account.enabled_resource_groups|length > 2 %} {% for resource_group in account.enabled_resource_groups[:2] %} {{ resource_group.name }}, {% endfor %} and {{ account.enabled_resource_groups|length - 2 }} more {% else %} {% for resource_group in account.enabled_resource_groups %} {{ resource_group.name }} {% if not loop.last %}, {% endif %} {% endfor %} {% endif %} |
{{ status_macros.text(account.status) }}
{% if account.expires_soon %}
|
{% if account.is_vip %}VIP{% else %}-{% endif %} |
|
No results to show. Try changing search parameters. |
|||||