document-processor/app/templates/ingest/result.html

40 lines
836 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ingest Result</title>
</head>
<body>
<h1>Ingest Result</h1>
<p>{{ message }}</p>
<p>
<a href="/ingest/">Back to ingest</a> |
<a href="/documents/">View documents</a>
</p>
{% if errors %}
<h2>Errors</h2>
<ul>
{% for error in errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
{% if documents %}
<h2>Documents</h2>
<ul>
{% for doc in documents %}
<li>
<a href="/documents/{{ doc.document_id }}">{{ doc.document_id }}</a>
— {{ doc.original_filename }}
— {{ doc.current_path }}
</li>
{% endfor %}
</ul>
{% endif %}
</body>
</html>