{% extends "base.html" %} {% block title %}Passages{% endblock %} {% block content %}

📚 Parcourir les passages

Explorez tous les passages indexés dans la base de données

{% if author_filter or work_filter %}
Filtres actifs : {% if author_filter %} {{ author_filter }} {% endif %} {% if work_filter %} {{ work_filter }} {% endif %}
{% endif %} {% if chunks %} {% for chunk in chunks %}
{{ chunk.work.title if chunk.work else '?' }} {{ chunk.sectionPath or '' }} {{ chunk.work.author if chunk.work else 'Anonyme' }}
"{{ chunk.text }}"
Type : {{ chunk.unitType or '—' }}  â”‚  Langue : {{ (chunk.language or '—') | upper }}  â”‚  Index : {{ chunk.orderIndex or '—' }}
{% if chunk.keywords %}
{% for kw in chunk.keywords %} {{ kw }} {% endfor %}
{% endif %}
{% endfor %} {% else %}
📭

Aucun passage trouvé

Essayez de modifier vos filtres ou réinitialisez.

{% endif %}
{% endblock %}