{% extends request.htmx|yesno:'htmx_components/base.html,htmx_components/standalone.html' %} {% block content %}

Public Keys:

{% for group in encryption_groups %}
{{ group }}
    {% for public_key in group.public_keys.all %}
  • {{ public_key }}
  • {% endfor %}
{% endfor %}

{% if private_keys.exists %}

Private Keys:

{% endif %}
{{ request.user }}
    {% for private_key in private_keys %}
  • {{ private_key }}
  • {% endfor %}
{% endblock %}