{% 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 %}
{% for inst in user_insts %} {% endfor %}
# {% trans "Instance" %} {% trans "VNC" %} {% trans "Resize" %} {% trans "Delete" %} {% trans "Action" %}
{{ forloop.counter }} {{ inst.instance.name }} {{ inst.is_vnc }} {{ inst.is_change }} {{ inst.is_delete }} {% icon 'pencil' %} {% icon 'trash' %}
{% for publickey in publickeys %} {% endfor %}
{% trans "Key name" %} {% trans "Public key" %}
{{ publickey.keyname }} {{ publickey.keypublic|truncatechars:64 }}
{% if totp_url %}
{% qr_from_text totp_url image_format="png" %}
{% endif %}
{% endblock content %}