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

{{ conversation.title }}

{{ conversation.messages|length }}
Message(s)
{{ conversation.model }}
Modele
{{ conversation.createdAt|date('d/m/Y') }}
Date creation
{# Conversation Details #}

Informations de la conversation

Titre
{{ conversation.title }}
Modele IA
{{ conversation.model }}
Date de creation
{{ conversation.createdAt|date('d/m/Y H:i') }}
{% if conversation.updatedAt %}
Derniere modification
{{ conversation.updatedAt|date('d/m/Y H:i') }}
{% endif %} {% if conversation.tags|length > 0 %}
Tags
{% for tag in conversation.tags %} {{ tag.name }} {% endfor %}
{% endif %} {% if project_name %}
Projet
{{ project_name }}
{% endif %}
{# Messages #}

Messages

{% for message in conversation.messages %} {% include 'export/pdf/partials/_message.html.twig' %} {% else %}

Aucun message dans cette conversation.

{% endfor %}
{% endblock %}