{% extends "base.html" %} {% from "components/ui.html" import csrf_field with context %} {% from "components/grants.html" import grant_editor, role_checks %} {% block title %}New user ยท {{ APP_NAME }}{% endblock %} {% block heading %}New user{% endblock %} {% block subheading %}
A user acts with its roles and grants. It signs in with a token you create next
{% endblock %} {% block content %}
{{ csrf_field() }}

User

{% if role_choices %}{{ role_checks(role_choices, []) }}{% endif %}

Grants

You can hand out only rights you hold yourself.
{{ grant_editor(rows, account_choices, groups, group_ops) }}
{% endblock %}