{% load i18n %} {% for field, value in object_fields %}

{{ field|capfirst }}{% trans ":" %} {% if value == True %}{% trans "yes" %} {% elif value == False %}{% trans "no" %} {% else %}{{value}} {% endif %}

{% endfor %}

{% trans "OIDC Claims" %}{% trans "Add claim" %}

{% if claims %} {% for claim in claims %} {% endfor %}
{% trans "Name" %}{% trans "Value" %}{% trans "Scopes" %}
{{ claim.name }} {{ claim.value }} {{ claim.scopes }} {% trans "Edit" %} {% trans "Delete" %}
{% endif %}