{% extends "base.html" %} {% block title %}{{ document.id }} - {{ title }}{% endblock %} {% block head %} {% endblock %} {% block body %} {{ emoji }} {{ title }} {% if summary %} Overview 📄 Finding Aid 🔄 Key Changes ❓ Research Questions {% endif %} {% if enable_browse_dates %} Browse by Date {% endif %} {% if enable_browse_entities %} Browse by Entity {% endif %} {# 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.prev_doc %} ← Previous {% else %} {% endif %} {% if document.next_doc %} Next → {% else %} {% endif %} {% if document.translation %} 📜 Original 🌐 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 %}