{% extends "base.html" %} {% block title %}Documents — Ingestible{% endblock %} {% block content %}

Ingested Documents

{% if documents %}
{% for doc in documents %} {% endfor %}
Title Document ID Pages Ingested
{{ doc.title }} {{ doc.doc_id }} {{ doc.total_pages }} {{ doc.ingestion_date[:10] if doc.ingestion_date else '—' }}
{% else %}

No documents ingested yet.

Upload your first document
{% endif %} {% endblock %}