{% if event.type == 'conference' %} {% extends 'events/display/conference/base.html' %} {% else %} {% extends 'layout/meeting_page_base.html' %} {% endif %} {% from 'message_box.html' import message_box %} {% block title %} {% trans %}Privacy Information{% endtrans %} {% endblock %} {% block content %} {% set data_controller_exists = privacy_info.data_controller_name or privacy_info.data_controller_email %} {% set privacy_policy_exists = privacy_info.privacy_policy or privacy_info.privacy_policy_urls %} {% if not data_controller_exists and not privacy_policy_exists %} {% call message_box('info', fixed_width=true) %} {% trans %}There is no privacy information for this event.{% endtrans %} {% endcall %} {% endif %} {% if data_controller_exists %}
{% trans %}Data controller{% endtrans %}
{% if privacy_info.data_controller_name %}
{{ privacy_info.data_controller_name }}
{% endif %} {% if privacy_info.data_controller_email %}
{{ privacy_info.data_controller_email }}
{% endif %}
{% endif %} {% if privacy_info.privacy_policy %}

{% trans %}Privacy notice{% endtrans %}

{{ privacy_info.privacy_policy|sanitize_html }}
{% elif privacy_info.privacy_policy_urls|length == 1 %} {% trans %}Privacy notice{% endtrans %} {% elif privacy_info.privacy_policy_urls %}

{% trans %}Privacy notices{% endtrans %}

{% for privacy_url in privacy_info.privacy_policy_urls %} {% endfor %}
{{ privacy_url.title }}
{% endif %} {% endblock %}