{% extends "base.html" %} {% block title %}{{ document.id }} - {{ title }}{% endblock %} {% block head %} {% endblock %} {% block body %}
{# Pagefind metadata for filtering - hidden from view #}
{{ document.date or 'Unknown' }} {{ document.date_display }} {% for entity in document.entities %} {{ entity.text }} {% endfor %}

{{ document.id }}

{% if document.translation %}
{{ document.transcription | safe }}
🌐 Machine translated to {{ target_language }}
{{ document.translation | safe }}
{% else %}

Transcription

{{ document.transcription | safe }}
{% endif %} {% if document.entities %}

Entities Found

{% for entity in document.entities %}
{% if entity.type == 'PERSON' %}👤 {% elif entity.type == 'LOCATION' %}📍 {% elif entity.type == 'ORGANIZATION' %}🏛️ {% elif entity.type == 'DATE' %}📅 {% elif entity.type == 'MONEY' %}💰 {% elif entity.type == 'LEGAL_TERM' %}⚖️ {% elif entity.type == 'EVENT' %}📌 {% else %}🏷️{% endif %}
{{ entity.text }}
{{ entity.context }}
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}