{% extends "base.html" %} {% block title %}Grants - KarmaSakshi Console{% endblock %} {% block content %}

Grants

The "Parent" column traces each grant's delegation lineage back to its root.

{% for g in grants %} {% endfor %}
GrantSubjectIssuerUsesStatusParent
{{ g.grant_id[:8] }} {{ g.subject }} {{ g.issuer }} {{ g.use_count }}/{{ g.max_uses }} {% if g.revoked %}revoked{% else %}active{% endif %} {{ g.parent_grant_id[:8] if g.parent_grant_id else "-" }} {% if not g.revoked %}
{% endif %}
{% endblock %}