{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
{% trans "Ingestion Issue" %}
{% trans "Ingestion" %} {{ object.ingestion|linkify }}
{% trans "Timestamp" %} {{ object.timestamp }}
{% trans "Phase" %} {{ object.get_phase_display }}
{% trans "Model" %} {{ object.model|placeholder }}
{% trans "Exception" %} {{ object.exception|placeholder }}
{% trans "Message" %}
{{ object.message }}
{% trans "Diagnosis" %}
{% if object.raw_data %}

{% trans "Schema identifiers only. Key values are deliberately not recorded." %}

{% for key, value in object.raw_data.items %} {% endfor %}
{{ key }} {{ value }}
{% else %}

{% trans "No diagnosis was recorded for this issue. Issues from before this release captured only the exception type." %}

{% endif %}
{% trans "Identity" %}
{% trans "Coalesce Fields" %} {{ object.coalesce_fields }}
{% trans "Defaults" %} {{ object.defaults }}
{% endblock content %}