{% extends 'base.html' %} {% block contentwrapper %}
{% block content %} {% if selected %}

{{ name }} ({{ user }})

{{ _("Logging times through days") }}
{{ _("MFA perfomed (at least once)") }} {{ _("MFA not performed") }}
{{ _("Last citites connected from") }}
    {% for city in last_n_cities %}
  • {% if city.mfa %} {% else %} {% endif %} {{ city.value }}
  • {% endfor %}
{{ _("Last connected IP addresses") }}
    {% for ip in ips %}
  • {% if ip.mfa %} {% else %} {% endif %} {{ ip.value }}
  • {% endfor %}
{{ _("Devices and browsers (most common first)") }}
    {% for agent in user_agents %}
  • {% if agent.mfa %} {% else %} {% endif %} ({{agent.value}}x) - {{ agent.label }}
  • {% endfor %}
{{ _("Last requested services") }}
    {% for service in sps %}
  • {% if service.upstream_acrs %} {% else %} {% endif %} {{ service.name }} ({{ service.identifier }})
    • {{ service.requested_acrs }}
  • {% endfor %}
{% else %}

{{ _("Specify a Perun user ID to gather data:") }}

method="get">
{% endif %} {% endblock %}
{% endblock %}