{% extends "mfa/webauthn/base.html" %} {% load i18n %} {% block title %} {% trans "Security Keys" %} {% endblock title %} {% block page.breadcrumbs %} {{ block.super }} {% endblock page.breadcrumbs %} {% block page.content %} {% if authenticators %} {% for authenticator in authenticators %} {% with wrapped=authenticator.wrap %} {% endwith %} {% endfor %}
{% trans "Name" %} {% trans "Type" %}
{{ wrapped.name }} {% if wrapped.is_passwordless %} {% elif wrapped.is_passwordless is False %} {% else %} {% endif %}
{% else %}

{% trans "No security keys have been registered." %}

{% endif %}
{% endblock page.content %}