{% extends "base.html" %} {% block title %}{{ doc.title or doc.filename }}{% endblock %} {% block content %}

{{ doc.title or doc.filename }}

{% if doc.author %}
Auteur{{ doc.author }}
{% endif %} {% if doc.pages %}
Pagina's{{ doc.pages }}
{% endif %} {% if doc.file_size %}
Grootte{{ doc.file_size }}
{% endif %} {% if doc.created_date %}
Datum{{ doc.created_date }}
{% endif %} {% if doc.indexed_date %}
Geïndexeerd{{ doc.indexed_date }}
{% endif %} {% if doc.category %}
Categorie{{ doc.category }}
{% endif %}
{% if chunks %}
{% for chunk in chunks %}
{% if chunk.title %}

{{ chunk.title }}

{% endif %}
{{ chunk.content|safe }}
{% endfor %}
{% elif doc.full_text %}
{{ doc.full_text[:5000] }}{% if doc.full_text|length > 5000 %}…{% endif %}
{% endif %}
{% if doc.title %}
{% endif %} ← Terug naar overzicht
{% endblock %}