document-processor/app/templates/documents/list.html

30 lines
746 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Documents</title>
</head>
<body>
<p><a href="/trash/">Open trash</a></p>
<p><a href="/queue/">Open review queue</a></p>
<h1>Documents</h1>
<p><a href="/documents/test-ingest">Create test ingest</a></p>
{% if documents %}
<ul>
{% for doc in documents %}
<li>
<a href="/documents/{{ doc.document_id }}">{{ doc.document_id }}</a>
— {{ doc.document_type or "unknown" }}
— {{ doc.review_status }}
— {{ doc.created_at }}
</li>
{% endfor %}
</ul>
{% else %}
<p>No documents yet.</p>
{% endif %}
</body>
</html>