{% extends '@kohinos/common/layout.html.twig' %} {% block title %}Consentement RGPD{% endblock %} {% block content %}

Gestion de vos consentements

{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('warning') %}
{{ message }}
{% endfor %} {% for message in app.flashes('error') %}
{{ message }}
{% endfor %} {% if missingConsents is not empty %}
Consentements requis : Vous devez accepter les conditions suivantes pour utiliser pleinement la plateforme.
Consentements à donner
{% for type in missingConsents %} {% if type == 'ssa' and not ssaActive %} {# Skip SSA consent if SSA module is not active or no caisse configured #} {% elseif type == 'geolocation' and KOH_ALLOW_GEOLOCATION|default('false') != 'true' %} {# Skip geolocation consent if geolocation is not enabled #} {% else %}
{% endif %} {% endfor %}
{% endif %} {% if activeConsents is not empty %}
Consentements actifs
{% for consent in activeConsents %} {% endfor %}
Type Date d'acceptation Version Actions
{{ consent.typeLabel }} {{ consent.grantedAt|date('d/m/Y H:i') }} {{ consent.version ?? '-' }} {% if consent.type != 'general' %}
{% else %} Obligatoire {% endif %}
{% endif %}
Vos droits

Conformément au RGPD, vous pouvez à tout moment :

  • Consulter et exporter vos données depuis votre espace RGPD
  • Retirer un consentement optionnel (SSA, notifications, géolocalisation)
  • Demander la suppression de votre compte via une demande d'effacement
{% if dpoEmail %}

Pour toute question, contactez notre DPO : {{ dpoEmail }}

{% endif %}
{% endblock %}