{% extends "base.html" %} {% load i18n %} {% load bootstrap_icons %} {% load qr_code %} {% block title %}{% trans "User Profile" %} - {{ user }}{% endblock %} {% block page_heading %}{% trans "User Profile" %}: {{ user }}{% endblock page_heading %} {% block page_heading_extra %} {% if otp_enabled %} {% bs_icon 'qr-code' %} {% endif %} {% bs_icon 'pencil' %} {% bs_icon 'plus' %} {% endblock page_heading_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 }} {% bs_icon 'pencil' %} {% bs_icon 'trash' %}
{% for publickey in publickeys %} {% endfor %}
{% trans "Key name" %} {% trans "Public key" %}
{{ publickey.keyname }} {{ publickey.keypublic|truncatechars:64 }}
{% endblock content %}