{% extends "base.html" %} {% block title %}{% if user %}Edit User{% else %}Create User{% endif %} - NanoIDP{% endblock %} {% block content %}

{% if user %}Edit User: {{ user.username }}{% else %}Create New User{% endif %}

Basic Information
Unique identifier for the user
{% if user %}
Leave empty to keep current password
{% endif %}
Tenant/organization identifier
Identity & Classification

Custom Attributes
{% if user and user.attributes %} {% for key, value in user.attributes.items() %}
{% endfor %} {% endif %}
Custom key/value pairs included in JWT and SAML tokens
Roles
Comma-separated list of roles
Entitlements
One entitlement per line
Source ACL (Access Control Lists)
One ACL entry per line. Used for data source access control.
Cancel
{% if user %} {% endif %}
{% if user %} {% endif %} {% endblock %} {% block extra_js %} {% endblock %}