{% extends 'export/pdf/base.html.twig' %} {% block title %}Export complet - LintellO{% endblock %} {% block header_title %}Export donnees personnelles{% endblock %} {% block content %} {# Summary Box #}

Resume de l'export

{{ projects|length }}
Projet(s)
{{ total_conversations }}
Conversation(s)
{{ total_messages }}
Message(s)
{# User Information #} {% include 'export/pdf/partials/_user_info.html.twig' %} {# User Context #} {% include 'export/pdf/partials/_context_section.html.twig' %} {# Projects and Conversations #}

Projets et conversations

{% for project in projects %}

{{ project.name }}

{% if project.tags|length > 0 %}
{% for tag in project.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{% if project.customInstructions %}
Instructions personnalisees :
{{ project.customInstructions|nl2br }}
{% endif %}

{{ project.conversations|length }} conversation(s) - Cree le {{ project.createdAt|date('d/m/Y') }}

{% for conversation in project.conversations %}

{{ conversation.title }}

Modele: {{ conversation.model }} | {{ conversation.messages|length }} message(s) | {{ conversation.createdAt|date('d/m/Y H:i') }} {% if conversation.tags|length > 0 %}
{% for tag in conversation.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{% for message in conversation.messages %} {% include 'export/pdf/partials/_message.html.twig' %} {% endfor %}
{% endfor %}
{% else %}

Aucun projet a exporter.

{% endfor %}
{% endblock %}