{% extends "base.html" %} {% import "macros.html" as m %} {% block title %}{{ record.title or record.source_url }} - {{ pack.pack }}{% endblock %} {% block content %}

{{ record.title or record.source_url }}

Document {{ record.document_id }} ({{ record.representation }}, {{ record.status }})
Source URL {{ record.source_url }}
{% if record.document_url != record.source_url %}
Document URL {{ record.document_url }}
{% endif %} {% if record.version_uri %}
Version {{ record.version_uri }}
{% endif %}
Attribution {{ (record.attribution or {}).kind }} {{ ((record.attribution or {}).source_ids or []) | join(', ') }}
Language declared {{ record.language_declared }}, hint {{ record.language_hint }}
Retrieved {{ (record.acquisition or {}).retrieved_at }} ({{ (record.acquisition or {}).attempt }})
Hashes raw {{ (record.acquisition or {}).raw_sha256 | shorten(16) }}, text {{ record.content_sha256 | shorten(16) }}
{% if record.warnings %}
warnings: {{ record.warnings | join(', ') }}
{% endif %} {% if record.exclusion_reasons %}
excluded: {{ record.exclusion_reasons | join(', ') }}
{% endif %} {% if record.imported_text %}
imported_text: {{ record.imported_text | as_json | shorten(120) }}
{% endif %} {% if entry.superseded %}
superseded
{% if successor %}open the diff against {{ successor.document_id }}{% endif %} {% endif %}

Block numbers are the bNNNNN suffix of the block IDs. Click the first block and then the last, or type the numbers on the right.

{% for row in rows %} {% if (show_furniture or not row.furniture) and (show_hidden or not row.hidden) %}
b{{ row.number }} {% if row.facts %}
{% for fact_id in row.facts %}fact {% endfor %}{% endif %}
{% if row.kind == 'heading' %}

{{ row.block.text }}

{% elif row.kind == 'table' %} {% if row.block.caption %}
{{ row.block.caption }}
{% endif %} {% if row.block.rows %} {% for line in row.block.rows %} {%- for cell in line -%} {% if cell.header %} {% else %} {% endif %} {%- endfor -%} {% endfor %}
{{ cell.text }}{{ cell.text }}
{% else %}{{ row.block.text }}{% endif %} {% else %} {{ row.block.text }} {% endif %} {% if row.marks %}[{{ row.marks | join(', ') }}]{% endif %} {% if show_raw %}
{{ row.dom_path }}
{% for link in row.links %}{% endfor %} {% endif %}
{% endif %} {% endfor %}

Selection

{% set document_id = record.document_id %} {% include "documents/excerpt_body.html" %}
{% endblock %}