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

{{ project.name }}

{{ project.conversations|length }}
Conversation(s)
{{ total_messages }}
Message(s)
{{ project.createdAt|date('d/m/Y') }}
Date creation
{# Project Details #}

Informations du projet

Nom
{{ project.name }}
Date de creation
{{ project.createdAt|date('d/m/Y H:i') }}
{% if project.updatedAt %}
Derniere modification
{{ project.updatedAt|date('d/m/Y H:i') }}
{% endif %} {% if project.tags|length > 0 %}
Tags
{% for tag in project.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{% if project.customInstructions %}
Instructions personnalisees :
{{ project.customInstructions|nl2br }}
{% endif %}
{# Conversations #}

Conversations

{% 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 %}
{% else %}

Aucune conversation dans ce projet.

{% endfor %}
{% endblock %}