{% extends "idhub/base.html" %} {% load i18n %} {% block content %}

{{ subtitle }}

{% load django_bootstrap5 %}
{% csrf_token %} {% if form.errors %} {% endif %} {% if form.credentials.all %} {% for presentation in form.presentation_definition %}

{{ presentation|capfirst }}

{% for f in form.credentials.all %} {% if f.type.lower == presentation.lower %} {% endif %} {% endfor %}
{{ f.type }} {{ f.description }} {{ f.get_issued_on }}
{% endfor %}
{% trans 'I read and understood the' %} {% trans 'data sharing notice' %}
{% trans "Cancel" %}
{% else %}

{% trans 'There are not credentials for present' %}

{% endif %}
{% endblock %}