{% extends 'base.html' %} {% block contentwrapper %}
{% block content %} {% if cfg.css_framework == 'MUNI' %}

{{ _("Personal data that will be transferred to the service ") }}{{ requester_name }}

{{ _("Information on the processing of personal data of the service ") }}{{ requester_name }}{{ _(" are defined at ") }}{{ _("the page") }}{{ _(", please familiarize yourself with the text.") }}

{% if warning %}
{% endif %} {% if locked_claims %}

{{ _("Mandatory attributes") }}


{% for attribute in locked_claims %}
{% if attribute_config and attribute in attribute_config %}{{ attribute_config[attribute][lang].capitalize() }}{% else %}{{ (attribute).capitalize() }}{% endif %}
{% if released_claims[attribute].__class__.__name__ == 'list' %} {% for value in released_claims[attribute] %} • {{ value }}
{% endfor %} {% else %} {{released_claims[attribute]}} {% endif %}
{% endfor %}
{% endif %}

{{ _("For the following attributes, choose whether you want to send them") }}


{% for attribute in released_claims %} {% if not locked_claims or not attribute in locked_claims %}
{% if attribute_config and attribute in attribute_config %}{{ attribute_config[attribute][lang].capitalize() }}{% else %}{{ (attribute).capitalize() }}{% endif %}
{% if released_claims[attribute].__class__.__name__ == 'list' %} {% for value in released_claims[attribute] %} • {{ value }}
{% endfor %} {% else %} {{released_claims[attribute]}} {% endif %}

{% endif %} {% endfor %}

{{ _("I confirm that I have read the terms of personal data processing ") }}{{ requester_name }}{{ _(" and I agree to the transfer of personal data:") }}


{% else %}

{{ _("Personal data that will be transferred to the service ") }}{{ requester_name }}

{{ _("Information on the processing of personal data of the service ") }}{{ requester_name }}{{ _(" are defined at ") }}{{ _("the page") }}{{ _(", please familiarize yourself with the text.") }}

{% if warning %} {% endif %} {% if locked_claims %}

{{ _("Mandatory attributes") }}


{% for attribute in locked_claims %}
{% if attribute_config and attribute in attribute_config %}{{ attribute_config[attribute][lang].capitalize() }}{% else %}{{ (attribute).capitalize() }}{% endif %}
{% if released_claims[attribute].__class__.__name__ == 'list' %} {% for value in released_claims[attribute] %} {{ value }}
{% endfor %} {% else %} {{released_claims[attribute]}} {% endif %}
{% endfor %}
{% endif %}

{{ _("For the following attributes, choose whether you want to send them") }}


{% for attribute in released_claims %} {% if not locked_claims or not attribute in locked_claims %}
{% if attribute_config and attribute in attribute_config %}{{ attribute_config[attribute][lang].capitalize() }}{% else %}{{ (attribute).capitalize() }}{% endif %}
{% if released_claims[attribute].__class__.__name__ == 'list' %} {% for value in released_claims[attribute] %} {{ value }} {% endfor %} {% else %} {{released_claims[attribute]}} {% endif %}
{% endif %} {% endfor %}

{{ _("I confirm that I have read the terms of personal data processing ") }}{{ requester_name }}{{ _(" and I agree to the transfer of personal data:") }}


{% endif %} {% endblock %}
{% endblock %}