#{{ channel_name }} {% if channel_topic %} {{ channel_topic }} {% endif %}
Messages {{ message_count }}
Participants {{ unique_users }}
Exporté le {{ export_date }}
{% for message in messages %}
avatar
{% if message.reply_to %}
↩️ Réponse à {{ message.reply_to.author }} : {{ message.reply_to.content }}
{% endif %}
{{ message.author.name }} {% if message.author.is_bot %} APP {% endif %} {% if message.author.highest_role %} {{ message.author.highest_role.name }} {% endif %} {{ message.timestamp | format_timestamp }} {% if message.edited_at %} (modifié) {% endif %}
{{ message.content | safe }}
{% if message.attachments %}
{% for file in message.attachments %} {% if include_attachments and file.url %}
{{ file.filename }} {{ file.size | filesizeformat }}
{% else %}
{{ file.filename }} Non inclus
{% endif %} {% endfor %}
{% endif %} {% if message.embeds %}
{% for embed in message.embeds %}
{% if embed.author %}
{% if embed.author.icon_url %} {% endif %} {% if embed.author.url %} {{ embed.author.name }} {% else %} {{ embed.author.name }} {% endif %}
{% endif %} {% if embed.thumbnail_url %}
{% endif %} {% if embed.title %} {% if embed.url %} {{ embed.title }} {% else %}
{{ embed.title }}
{% endif %} {% endif %} {% if embed.description %}
{{ embed.description | safe }}
{% endif %} {% if embed.fields %}
{% for field in embed.fields %}
{{ field.name | safe }}
{{ field.value | safe }}
{% endfor %}
{% endif %} {% if embed.image_url %}
{% endif %} {% if embed.footer or embed.timestamp %} {% endif %}
{% endfor %}
{% endif %} {% if message.components %}
{% for row in message.components %}
{% for item in row["items"] %} {% if item.type == 2 %} {# Button #} {% if item.url %} {% if item.emoji %}{{ item.emoji }}{% endif %} {{ item.label }} {% else %} {% endif %} {% elif item.type == 3 %} {# Select Menu #}
{{ item.placeholder }}
{% for option in item.options %}
{% if option.emoji %}{{ option.emoji }}{% endif %} {{ option.label }} {% if option.description %} {{ option.description }} {% endif %}
{% endfor %}
{% endif %} {% endfor %}
{% endfor %}
{% endif %} {% if message.reactions %}
{% for reaction in message.reactions %} {% if reaction.emoji.startswith(' {% endfor %}
{% endif %}
{% endfor %}