{% extends "base.html" %}
{% load i18n %}
{% load icons %}
{% load qr_code %}
{% block title %}{% trans "User Profile" %} - {{ user }}{% endblock %}
{% block page_header %}{% trans "User Profile" %}: {{ user }}{% endblock page_header %}
{% block page_header_extra %}
{% icon 'plus' %}
{% endblock page_header_extra %}
{% block content %}
{% trans "Key name" %} |
{% trans "Public key" %} |
{% for publickey in publickeys %}
{{ publickey.keyname }} |
{{ publickey.keypublic|truncatechars:64 }} |
{% endfor %}
{% if totp_url %}
{% qr_from_text totp_url image_format="png" %}
{% endif %}
{% endblock content %}