{% extends "base.html" %} {% block title %}{{ t('temporal.eyebrow') }} - {{ article_id }}{% endblock %} {% block content %}

{{ t('temporal.current') }}

{% for claim in current %}
{{ label(claim.predicate) }}{{ easy(claim.object) }}{{ claim.valid_from or '-' }}
{% else %}
{{ t('temporal.empty_claims') }}
{% endfor %}

{{ t('temporal.timeline') }}

{% for item in timeline %}
{{ label(item.kind) }}
{{ item.data|tojson(indent=2) }}
{% else %}
{{ t('temporal.empty_timeline') }}
{% endfor %}
{% if disputed %}

{{ t('temporal.disputed') }}

{{ disputed|tojson(indent=2) }}
{% endif %} {% if conflicts %}

{{ t('temporal.conflicts') }}

{{ conflicts|tojson(indent=2) }}
{% endif %} {% endblock %}