{% extends "admin/base.html" %} {% block title %}{{ target_user.username }} — Admin — Porchlight{% endblock %} {% block admin_content %}

{{ target_user.username }}

ID: {{ target_user.userid }} · Created {{ target_user.created_at.strftime('%Y-%m-%d %H:%M') }}

Profile

Groups

{% for group in target_user.groups %} {{ group }} {% endfor %}

Credentials

Password

{% if has_password %}

Password is set.

{% else %}

No password set.

{% endif %}

Security keys

{% if webauthn_credentials %}
    {% for cred in webauthn_credentials %}
  • {{ cred.device_name or "Security key" }} (added {{ cred.created_at.strftime('%Y-%m-%d') }})
  • {% endfor %}
{% else %}

No security keys registered.

{% endif %}

Actions

{% if target_user.active %} {% else %} {% endif %}
{% endblock %}